diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a84ab7..5192df4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -161,3 +161,7 @@ * 1.15.4 -- 2022-05-26 - remove billing-policies, move into iam-general-policies + +* 1.15.5 -- 2022-05-27 + - iam-saml + - add tags diff --git a/common/version.tf b/common/version.tf index fc42bb1..1832911 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,3 +1,3 @@ locals { - _module_version = "1.15.4" + _module_version = "1.15.5" } diff --git a/iam-saml/main.tf b/iam-saml/main.tf index ce07187..dc9e592 100644 --- a/iam-saml/main.tf +++ b/iam-saml/main.tf @@ -89,10 +89,9 @@ resource "aws_iam_saml_provider" "saml" { name = var.saml_provider_name saml_metadata_document = data.external.saml_metadata.result.value - # when the provider supports tags, enable this section - # tags = merge( - # var.tags, - # local.base_tags, - # map("Name", local.provider_name), - # ) + tags = merge( + var.tags, + local.base_tags, + { "Name" = var.saml_provider_name }, + ) }