diff --git a/infra/README.md b/infra/README.md index a0eb1ccd..517cb32d 100644 --- a/infra/README.md +++ b/infra/README.md @@ -48,7 +48,7 @@ Functional examples are included in the | database\_name | Cloud SQL database name | `string` | `"django"` | no | | database\_username | Cloud SQL database name | `string` | `"server"` | no | | enable\_apis | Whether or not to enable underlying apis in this solution. | `bool` | `true` | no | -| image\_version | Version of the container image to use | `string` | `"v1.9.0"` | no | +| image\_version | Version of the container image to use | `string` | `"v1.10.3"` | no | | init | Initialize database? | `bool` | `true` | no | | instance\_name | Cloud SQL Instance name | `string` | `"psql"` | no | | labels | A set of key/value label pairs to assign to the resources deployed by this blueprint. | `map(string)` | `{}` | no | diff --git a/infra/service.tf b/infra/service.tf index 784cad56..99882af0 100644 --- a/infra/service.tf +++ b/infra/service.tf @@ -101,4 +101,5 @@ resource "google_cloud_run_service_iam_policy" "server_noauth" { project = google_cloud_run_v2_service.server.project service = google_cloud_run_v2_service.server.name policy_data = data.google_iam_policy.noauth.policy_data + depends_on = [google_cloud_run_v2_service.server] } diff --git a/infra/variables.tf b/infra/variables.tf index f18b5e80..b6d66e22 100644 --- a/infra/variables.tf +++ b/infra/variables.tf @@ -62,7 +62,7 @@ variable "init" { variable "image_version" { type = string - default = "v1.9.0" + default = "v1.10.3" description = "Version of the container image to use" }