File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ resource "aws_ssm_parameter" "uh_mirror_address" {
2+ name = " /${ local . identifier_prefix } /${ module . department_housing . identifier } /uh_mirror_prod/address"
3+ type = " String"
4+ value = " UPDATE_IN_CONSOLE"
5+ tags = module. tags . values
6+
7+ lifecycle {
8+ ignore_changes = [
9+ value ,
10+ ]
11+ }
12+ }
13+
14+ resource "aws_ssm_parameter" "uh_mirror_username" {
15+ name = " /${ local . identifier_prefix } /${ module . department_housing . identifier } /uh_mirror_prod/username"
16+ type = " String"
17+ value = " UPDATE_IN_CONSOLE"
18+ tags = module. tags . values
19+
20+ lifecycle {
21+ ignore_changes = [
22+ value ,
23+ ]
24+ }
25+ }
26+
27+ resource "aws_ssm_parameter" "uh_mirror_password" {
28+ name = " /${ local . identifier_prefix } /${ module . department_housing . identifier } /uh_mirror_prod/password"
29+ type = " String"
30+ value = " UPDATE_IN_CONSOLE"
31+ tags = module. tags . values
32+
33+ lifecycle {
34+ ignore_changes = [
35+ value ,
36+ ]
37+ }
38+ }
39+
You can’t perform that action at this time.
0 commit comments