Skip to content
This repository was archived by the owner on Jul 17, 2023. It is now read-only.

Commit 9dafeaa

Browse files
Marking output data as sensitive (#13)
1 parent 5a43c99 commit 9dafeaa

File tree

12 files changed

+24
-12
lines changed

12 files changed

+24
-12
lines changed

examples/simple-elasticsearch/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
###########################################################
55

66
output "simple-elasticsearch" {
7-
value = module.database_simple-elasticsearch
7+
value = module.database_simple-elasticsearch
8+
sensitive = true
89
}

examples/simple-etcd/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
###########################################################
55

66
output "simple-etcd" {
7-
value = module.database_simple-etcd
7+
value = module.database_simple-etcd
8+
sensitive = true
89
}

examples/simple-mongo/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
###########################################################
55

66
output "simple-mongo" {
7-
value = module.database_simple-mongo
7+
value = module.database_simple-mongo
8+
sensitive = true
89
}

examples/simple-postgresql/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
###########################################################
55

66
output "simple-postgresql" {
7-
value = module.database_simple-postgresql
7+
value = module.database_simple-postgresql
8+
sensitive = true
89
}

examples/simple-rabbitmq/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
###########################################################
55

66
output "simple-rabbitmq" {
7-
value = module.database_simple-rabbitmq
7+
value = module.database_simple-rabbitmq
8+
sensitive = true
89
}

examples/simple-redis/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
###########################################################
55

66
output "simple-redis" {
7-
value = module.database_simple-redis
7+
value = module.database_simple-redis
8+
sensitive = true
89
}

modules/elasticsearch/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
# Copyright 2020 IBM
44
###########################################################
55
output "elasticsearch" {
6-
value = ibm_database.elasticsearch
6+
value = ibm_database.elasticsearch
7+
sensitive = true
78
}

modules/etcd/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
# Copyright 2020 IBM
44
###########################################################
55
output "etcd" {
6-
value = ibm_database.etcd
6+
value = ibm_database.etcd
7+
sensitive = true
78
}

modules/mongo/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
# Copyright 2020 IBM
44
###########################################################
55
output "mongodb" {
6-
value = ibm_database.mongodb
6+
value = ibm_database.mongodb
7+
sensitive = true
78
}

modules/postgresql/outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
# Copyright 2020 IBM
44
###########################################################
55
output "postgresql" {
6-
value = ibm_database.postgresql
6+
value = ibm_database.postgresql
7+
sensitive = true
78
}

0 commit comments

Comments
 (0)