22 lines
670 B
HCL
22 lines
670 B
HCL
context = {
|
|
kms_keys = { mykey = "projects/myprj/locations/europe-west8/keyRings/mykr/cryptoKeys/mykey" }
|
|
locations = { ew8 = "europe-west8" }
|
|
networks = { myvpc = "projects/myprj/global/networks/myvpc" }
|
|
project_ids = { myprj = "my-project" }
|
|
}
|
|
project_id = "$project_ids:myprj"
|
|
region = "$locations:ew8"
|
|
name = "db-test"
|
|
database_version = "POSTGRES_13"
|
|
tier = "db-g1-small"
|
|
network_config = {
|
|
connectivity = {
|
|
psa_config = {
|
|
private_network = "$networks:myvpc"
|
|
}
|
|
}
|
|
}
|
|
encryption_key_name = "$kms_keys:mykey"
|
|
gcp_deletion_protection = false
|
|
terraform_deletion_protection = false
|