This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2410 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 0176d12aeeb55435a74f84b5c8449a1bf9167468 Author: leonidfrolov <[email protected]> AuthorDate: Wed Jun 9 15:03:39 2021 +0300 [DATALAB-2410]: made some vars sensitive for terraform --- .../terraform/aws/endpoint/main/variables.tf | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/infrastructure-provisioning/terraform/aws/endpoint/main/variables.tf b/infrastructure-provisioning/terraform/aws/endpoint/main/variables.tf index 833afeb..637dba6 100644 --- a/infrastructure-provisioning/terraform/aws/endpoint/main/variables.tf +++ b/infrastructure-provisioning/terraform/aws/endpoint/main/variables.tf @@ -23,9 +23,11 @@ variable "service_base_name" {} variable "access_key_id" { default = "" + sensitive = true } variable "secret_access_key" { default = "" + sensitive = true } variable "region" {} @@ -38,7 +40,9 @@ variable "subnet_cidr" {} variable "endpoint_instance_shape" {} -variable "key_name" {} +variable "key_name" { + sensitive = true +} variable "ami" { default = "ami-07b4f3c02c7f83d59" @@ -84,7 +88,9 @@ variable "tag_resource_id" { variable "billing_enable" {} -variable "mongo_password" {} +variable "mongo_password" { + sensitive = true +} variable "mongo_host" {} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
