-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.tf
More file actions
100 lines (81 loc) · 2.43 KB
/
main.tf
File metadata and controls
100 lines (81 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
locals {
metadata = {
package = "terraform-aws-secret"
version = trimspace(file("${path.module}/../../VERSION"))
module = basename(path.module)
name = var.name
}
module_tags = var.module_tags_enabled ? {
"module.terraform.io/package" = local.metadata.package
"module.terraform.io/version" = local.metadata.version
"module.terraform.io/name" = local.metadata.module
"module.terraform.io/full-name" = "${local.metadata.package}/${local.metadata.module}"
"module.terraform.io/instance" = local.metadata.name
} : {}
}
locals {
types = {
"STRING" = "String"
"STRING_LIST" = "StringList"
"SECURE_STRING" = "SecureString"
}
tiers = {
"STANDARD" = "Standard"
"ADVANCED" = "Advanced"
"INTELLIGENT_TIERING" = "Intelligent-Tiering"
}
}
###################################################
# Parameter on Systems Manager Parameter Store
###################################################
# INFO: Deprecated attributes
# - `overwrite`
resource "aws_ssm_parameter" "this" {
count = var.ignore_value_changes ? 0 : 1
region = var.region
name = var.name
description = var.description
tier = var.tier != null ? local.tiers[var.tier] : null
type = local.types[var.type]
data_type = var.data_type
allowed_pattern = var.allowed_pattern
insecure_value = var.type == "SECURE_STRING" ? null : var.value
value = var.type == "SECURE_STRING" ? var.secret_value : null
## Encryption
key_id = var.type == "SECURE_STRING" ? var.kms_key : null
tags = merge(
{
"Name" = local.metadata.name
},
local.module_tags,
var.tags,
)
}
# INFO: Deprecated attributes
# - `overwrite`
resource "aws_ssm_parameter" "self" {
count = var.ignore_value_changes ? 1 : 0
name = var.name
description = var.description
tier = var.tier != null ? local.tiers[var.tier] : null
type = local.types[var.type]
data_type = var.data_type
allowed_pattern = var.allowed_pattern
insecure_value = var.type == "SECURE_STRING" ? null : var.value
value = var.type == "SECURE_STRING" ? var.secret_value : null
## Encryption
key_id = var.type == "SECURE_STRING" ? var.kms_key : null
tags = merge(
{
"Name" = local.metadata.name
},
local.module_tags,
var.tags,
)
lifecycle {
ignore_changes = [
value,
insecure_value,
]
}
}