Skip to content

Commit

Permalink
test: fixed KP keys to avoid conflicts (#570)
Browse files Browse the repository at this point in the history
Co-authored-by: shemau <[email protected]>
  • Loading branch information
Ak-sky and shemau authored Jan 30, 2025
1 parent 1cc3131 commit 4203bcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ module "postgresql_db" {
# Example of how to use different KMS keys for data and backups
use_ibm_owned_encryption_key = false
use_same_kms_key_for_backups = false
kms_key_crn = module.key_protect_all_inclusive.keys["icd-pg.${var.prefix}-pg"].crn
backup_encryption_key_crn = module.key_protect_all_inclusive.keys["icd-pg.${local.data_key_name}"].crn
kms_key_crn = module.key_protect_all_inclusive.keys["icd-pg.${local.data_key_name}"].crn
backup_encryption_key_crn = module.key_protect_all_inclusive.keys["icd-pg.${local.backups_key_name}"].crn
resource_tags = var.resource_tags
service_credential_names = {
"postgressql_admin" : "Administrator",
Expand Down

0 comments on commit 4203bcd

Please sign in to comment.