This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2551 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 2f9b6fbd7f76e454d6c131a25da26ce2c8816075 Author: leonidfrolov <[email protected]> AuthorDate: Wed May 18 15:19:48 2022 +0300 [DATALAB-2551]: changed tf variables types --- infrastructure-provisioning/terraform/gcp/endpoint/main/variables.tf | 4 ++-- infrastructure-provisioning/terraform/gcp/modules/common/variables.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure-provisioning/terraform/gcp/endpoint/main/variables.tf b/infrastructure-provisioning/terraform/gcp/endpoint/main/variables.tf index aa42396e8..047e7c103 100644 --- a/infrastructure-provisioning/terraform/gcp/endpoint/main/variables.tf +++ b/infrastructure-provisioning/terraform/gcp/endpoint/main/variables.tf @@ -76,7 +76,7 @@ variable "firewall_eg_cidr_range" { } variable "endpoint_policies" { - type = "list" + type = list(string) default = [ "storage.buckets.create", "storage.buckets.delete", @@ -121,7 +121,7 @@ variable "endpoint_policies" { } variable "endpoint_roles" { - type = "list" + type = list(string) default = [ "roles/iam.serviceAccountUser", "roles/iam.serviceAccountAdmin", diff --git a/infrastructure-provisioning/terraform/gcp/modules/common/variables.tf b/infrastructure-provisioning/terraform/gcp/modules/common/variables.tf index ec812d0fc..f4d22dcf6 100644 --- a/infrastructure-provisioning/terraform/gcp/modules/common/variables.tf +++ b/infrastructure-provisioning/terraform/gcp/modules/common/variables.tf @@ -46,14 +46,14 @@ variable "cidr_range" {} variable "traefik_cidr" {} variable "ps_roles" { - type = "list" + type = list(string) default = [ "roles/dataproc.worker" ] } variable "ps_policy" { - type = "list" + type = list(string) default = [ ] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
