File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
test/fixtures/beta_cluster Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ resource "google_kms_key_ring" "db" {
2727
2828resource "google_kms_crypto_key" "db" {
2929 name = local. name
30- key_ring = google_kms_key_ring. db . self_link
30+ key_ring = google_kms_key_ring. db . id
3131}
3232
3333module "this" {
@@ -49,7 +49,7 @@ module "this" {
4949
5050 database_encryption = [{
5151 state = " ENCRYPTED"
52- key_name = google_kms_crypto_key.db.self_link
52+ key_name = google_kms_crypto_key.db.id
5353 }]
5454
5555 cloudrun = true
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ output "service_account" {
8181}
8282
8383output "database_encryption_key_name" {
84- value = google_kms_crypto_key. db . self_link
84+ value = google_kms_crypto_key. db . id
8585}
8686
8787output "identity_namespace" {
You can’t perform that action at this time.
0 commit comments