-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DSOS-2358: allow additional oracle secure backup config (#404)
* DSOS-2358: allow additional oracle secure backup config for refresh from prod * Commit changes made by code formatters --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
ea3787b
commit 674f6a9
Showing
9 changed files
with
61 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
ansible/group_vars/environment_name_nomis_combined_reporting_preproduction.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
--- | ||
ansible_aws_ssm_bucket_name: s3-bucket20230301111337484000000001 | ||
image_builder_s3_bucket_name: nomis-combined-reporting-software20230330140932343400000001 | ||
db_backup_s3_bucket_name: ncr-db-backup-bucket20230823123524544100000001 | ||
dns_zone_internal: nomis-combined-reporting.hmpps-preproduction.modernisation-platform.internal | ||
dns_search_domains: | ||
- hmpps-oem.hmpps-preproduction.modernisation-platform.internal | ||
- azure.hmpp.root | ||
|
||
osbws_additional_configs: | ||
- name: osbws_prod | ||
s3_bucket_name: ncr-db-backup-bucket20230823123102902900000001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/bash | ||
export PATH=$PATH:"{{ osw_stage_dir }}/jdk1.7.0_80/bin" | ||
java -jar "{{ osw_stage_dir }}/osbws_install.jar" -ARGFILE "{{ osw_stage_dir }}/osbws_argfile" -IAMRole "{{ ansible_ec2_iam_instance_profile_role }}" -useHttps | logger -p local3.info -t java | ||
java -jar "{{ osw_stage_dir }}/osbws_install.jar" -ARGFILE "{{ osw_stage_dir }}/{{ osbws_config.name }}_argfile" -IAMRole "{{ ansible_ec2_iam_instance_profile_role }}" -useHttps | logger -p local3.info -t java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
-walletDir {{ database_home }}/dbs/osbws_wallet | ||
-walletDir {{ database_home }}/dbs/{{ osbws_config.name }}_wallet | ||
-libDir {{ database_home }}/lib | ||
-location {{ ansible_ec2_placement_region }} | ||
-awsEndPoint s3-{{ ansible_ec2_placement_region }}.amazonaws.com | ||
-configFile {{ database_home }}/dbs/osbws.ora | ||
-configFile {{ database_home }}/dbs/{{ osbws_config.name }}.ora |