We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212f5d6 commit 6b5ed97Copy full SHA for 6b5ed97
main.tf
@@ -2,7 +2,7 @@ resource "aws_kms_key" "devops" {
2
description = "kms key decription"
3
enable_key_rotation = true
4
policy = data.template_file.pqw.rendered
5
- tags = merge(var.tags, map("ApplicationComponent", "kms"))
+ tags = merge(var.tags, tomap({ "ApplicationComponent" = "kms" }))
6
}
7
resource "aws_kms_alias" "alias" {
8
name = format("alias/%s", var.key_name)
0 commit comments