@@ -2,7 +2,8 @@ data "env0_configuration_variable" "region" {
2
2
name = " AWS_DEFAULT_REGION"
3
3
}
4
4
output "region_value" {
5
- value = data. env0_configuration_variable . region . value
5
+ value = data. env0_configuration_variable . region . value
6
+ sensitive = true
6
7
}
7
8
output "region_id" {
8
9
value = data. env0_configuration_variable . region . id
@@ -17,7 +18,8 @@ data "env0_configuration_variable" "region_in_project" {
17
18
project_id = data. env0_project . default . id
18
19
}
19
20
output "region_in_project_value" {
20
- value = data. env0_configuration_variable . region_in_project . value
21
+ value = data. env0_configuration_variable . region_in_project . value
22
+ sensitive = true
21
23
}
22
24
output "region_in_project_id" {
23
25
value = data. env0_configuration_variable . region_in_project . id
@@ -33,7 +35,8 @@ data "env0_configuration_variable" "tested1" {
33
35
}
34
36
35
37
output "tested1_value" {
36
- value = data. env0_configuration_variable . tested1 . value
38
+ value = data. env0_configuration_variable . tested1 . value
39
+ sensitive = true
37
40
}
38
41
39
42
data "env0_configuration_variable" "tested2" {
@@ -52,8 +55,10 @@ data "env0_configuration_variable" "tested3" {
52
55
53
56
54
57
output "tested3_enum_1" {
55
- value = data. env0_configuration_variable . tested3 . enum [0 ]
58
+ value = data. env0_configuration_variable . tested3 . enum [0 ]
59
+ sensitive = true
56
60
}
57
61
output "tested3_enum_2" {
58
- value = data. env0_configuration_variable . tested3 . enum [1 ]
62
+ value = data. env0_configuration_variable . tested3 . enum [1 ]
63
+ sensitive = true
59
64
}
0 commit comments