You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: The following DA variables have been renamed:<br>- skip_mysql_sm_auth_policy -> skip_mysql_secrets_manager_auth_policy<br>- admin_pass_secret_manager_secret_group -> admin_pass_secrets_manager_secret_group<br>- admin_pass_secret_manager_secret_name -> admin_pass_secrets_manager_secret_name<br>- use_existing_admin_pass_secret_manager_secret_group -> use_existing_admin_pass_secrets_manager_secret_group (#273)
description="Whether an IAM authorization policy is created for Secrets Manager instance to create a service credential secrets for Databases for MySQL. If set to false, the Secrets Manager instance passed by the user is granted the Key Manager access to the MySQL instance created by the Deployable Architecture. Set to `true` to use an existing policy. The value of this is ignored if any value for 'existing_secrets_manager_instance_crn' is not passed."
description="The name of a new or existing secrets manager secret group for admin password. To use existing secret group, `use_existing_admin_pass_secret_manager_secret_group` must be set to `true`. If a prefix input variable is specified, the prefix is added to the name in the `<prefix>-<name>` format."
387
+
description="The name of a new or existing secrets manager secret group for admin password. To use existing secret group, `use_existing_admin_pass_secrets_manager_secret_group` must be set to `true`. If a prefix input variable is specified, the prefix is added to the name in the `<prefix>-<name>` format."
388
388
default="mysql-secrets"
389
389
390
390
validation {
391
391
condition=(
392
392
var.existing_secrets_manager_instance_crn==null||
393
-
var.admin_pass_secret_manager_secret_group!=null
393
+
var.admin_pass_secrets_manager_secret_group!=null
394
394
)
395
-
error_message="`admin_pass_secret_manager_secret_group` is required when `existing_secrets_manager_instance_crn` is set."
395
+
error_message="`admin_pass_secrets_manager_secret_group` is required when `existing_secrets_manager_instance_crn` is set."
description="The name of a new redis administrator secret. If a prefix input variable is specified, the prefix is added to the name in the `<prefix>-<name>` format."
409
409
default="mysql-admin-password"
410
410
411
411
validation {
412
412
condition=(
413
413
var.existing_secrets_manager_instance_crn==null||
414
-
var.admin_pass_secret_manager_secret_name!=null
414
+
var.admin_pass_secrets_manager_secret_name!=null
415
415
)
416
-
error_message="`admin_pass_secret_manager_secret_name` is required when `existing_secrets_manager_instance_crn` is set."
416
+
error_message="`admin_pass_secrets_manager_secret_name` is required when `existing_secrets_manager_instance_crn` is set."
0 commit comments