From 0a5baac64ca57010b064057fe1eb55f2072dfa26 Mon Sep 17 00:00:00 2001 From: badra001 Date: Fri, 27 May 2022 13:25:50 -0400 Subject: [PATCH] iam-saml: add tags --- CHANGELOG.md | 4 ++++ common/version.tf | 2 +- iam-saml/main.tf | 11 +++++------ 3 files changed, 10 insertions(+), 7 deletions(-) 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 }, + ) }