File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 144
144
async : " {{ allowable_duration|default(28800) }}"
145
145
poll : 60
146
146
environment :
147
- ASSUME_ROLE_NAME : " {{ secretsmanager_passwords['catalog'].assume_role_name }}"
148
- SECRET_ACCOUNT_ID : " {{ account_ids[secretsmanager_passwords['catalog'].account_name] }}"
149
- SECRET : " {{ secretsmanager_passwords['catalog'].secret }}"
147
+ ASSUME_ROLE_NAME : " {{ secretsmanager_passwords['catalog'].assume_role_name | default() }}"
148
+ SECRET_ACCOUNT_ID : " {{ account_ids[secretsmanager_passwords['catalog'].account_name] | default() }}"
149
+ SECRET : " {{ secretsmanager_passwords['catalog'].secret | default() }}"
150
150
register : backup_cmd_output
151
151
152
152
rescue :
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ validate () {
212
212
error " Catalog mode is $CATALOGMODE , specify catalog db"
213
213
else
214
214
get_rman_password
215
- [ -z ${RMANPASS} ] && error " Password for RMAN catalog user ${RMANPASS} does not exist"
215
+ [ -z ${RMANPASS} ] && error " Password for RMAN catalog user rcvcatowner does not exist"
216
216
CATALOG_CONNECT=rcvcatowner/${RMANPASS} @$CATALOG_DB
217
217
fi
218
218
fi
You can’t perform that action at this time.
0 commit comments