From a4dfd7f201a1dc45809cc71101a5455adc21c1d7 Mon Sep 17 00:00:00 2001 From: Zachary Date: Wed, 30 Aug 2023 11:04:10 +0100 Subject: [PATCH 1/2] fixed grcp to grpc typo in cloud run module --- modules/cloud-run/variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) })) From b784e85c60c8fe633702e22ebb99681f1e101980 Mon Sep 17 00:00:00 2001 From: Zachary Date: Wed, 30 Aug 2023 12:16:21 +0100 Subject: [PATCH 2/2] Regenerated cloud run README tables with tfdoc.py Updated documentation with tfdoc.py --- modules/cloud-run/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) | | {} |