diff --git a/modules/cloud-run/README.md b/modules/cloud-run/README.md index 7be58bf3..5090aba1 100644 --- a/modules/cloud-run/README.md +++ b/modules/cloud-run/README.md @@ -341,7 +341,7 @@ module "cloud_run" { | [name](variables.tf#L136) | Name used for cloud run service. | string | ✓ | | | [project_id](variables.tf#L151) | Project id used for all resources. | string | ✓ | | | [container_concurrency](variables.tf#L18) | Maximum allowed in-flight (concurrent) requests per container of the revision. | string | | null | -| [containers](variables.tf#L24) | Containers in arbitrary key => attributes format. | map(object({…})) | | {} | +| [containers](variables.tf#L24) | Containers in arbitrary key => attributes format. | map(object({…})) | | {} | | [eventarc_triggers](variables.tf#L91) | Event arc triggers for different sources. | object({…}) | | {} | | [gen2_execution_environment](variables.tf#L105) | Use second generation execution environment. | bool | | false | | [iam](variables.tf#L111) | IAM bindings for Cloud Run service in {ROLE => [MEMBERS]} format. | map(list(string)) | | {} | diff --git a/modules/cloud-run/variables.tf b/modules/cloud-run/variables.tf index 9a4992a7..2b7fd3af 100644 --- a/modules/cloud-run/variables.tf +++ b/modules/cloud-run/variables.tf @@ -34,7 +34,7 @@ variable "containers" { })), {}) liveness_probe = optional(object({ action = object({ - grcp = optional(object({ + grpc = optional(object({ port = optional(number) service = optional(string) })) @@ -65,7 +65,7 @@ variable "containers" { })) startup_probe = optional(object({ action = object({ - grcp = optional(object({ + grpc = optional(object({ port = optional(number) service = optional(string) }))