File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
deployment/modules/gcp/conformance Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -32,13 +32,15 @@ module "cloudrun" {
32
32
base_name = var. base_name
33
33
location = var. location
34
34
server_docker_image = var. server_docker_image
35
+ skip_iam = var. skip_iam
35
36
bucket = module. storage . log_bucket . id
36
37
log_spanner_instance = module. storage . log_spanner_instance . name
37
38
log_spanner_db = module. storage . log_spanner_db . name
38
39
dedup_spanner_db = module. storage . dedup_spanner_db . name
39
40
signer_public_key_secret_name = module. secretmanager . ecdsa_p256_public_key_id
40
41
signer_private_key_secret_name = module. secretmanager . ecdsa_p256_private_key_id
41
42
43
+
42
44
depends_on = [
43
45
module . secretmanager ,
44
46
module . storage ,
Original file line number Diff line number Diff line change @@ -27,3 +27,8 @@ variable "server_docker_image" {
27
27
description = " The full image URL (path & tag) for the Docker image to deploy in Cloud Run"
28
28
type = string
29
29
}
30
+
31
+ variable "skip_iam" {
32
+ description = " Skip for IAM externally managed GCP projects"
33
+ type = bool
34
+ }
You can’t perform that action at this time.
0 commit comments