Files
hunfabric/tests/modules/cloudsql_instance/context.tfvars
Ludovico Magnocavallo a6c284a273 Add context support to artifact-registry, net-lb-app-int, cloudsql modules (#3784)
* artifact-registry

* net-lb-app-int

* copyright

* cloudsql

* fix linting
2026-03-11 12:35:09 +01:00

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