Skip to content

Commit b50d0a5

Browse files
add uh parameters
1 parent 8cd8b8b commit b50d0a5

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+

0 commit comments

Comments
 (0)