From b61fbb35437022646eab9dbd4452c9cc065f4de2 Mon Sep 17 00:00:00 2001 From: emily Date: Fri, 27 Dec 2019 20:58:31 +0000 Subject: [PATCH] Make spec env, command fields updatable for cloudrun service Signed-off-by: Modular Magician --- google/resource_cloud_run_service.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/google/resource_cloud_run_service.go b/google/resource_cloud_run_service.go index e4cb59499e1..b70c17bd2de 100644 --- a/google/resource_cloud_run_service.go +++ b/google/resource_cloud_run_service.go @@ -115,7 +115,6 @@ https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument "command": { Type: schema.TypeList, Optional: true, - ForceNew: true, Description: `Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's @@ -132,7 +131,6 @@ https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument "env": { Type: schema.TypeList, Optional: true, - ForceNew: true, Description: `List of environment variables to set in the container.`, Elem: &schema.Resource{ Schema: map[string]*schema.Schema{