Skip to content

Commit

Permalink
Add missing tags for resources (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
snovikov authored Jun 5, 2023
1 parent 72687d6 commit a44ef6e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ resource "aws_iam_saml_provider" "default" {

name = each.value.name
saml_metadata_document = file(each.value.file)
tags = var.tags
}

# Create OpenID Connect providers
Expand All @@ -44,6 +45,7 @@ resource "aws_iam_openid_connect_provider" "default" {
url = each.value.url
client_id_list = each.value.client_id_list
thumbprint_list = each.value.thumbprint_list
tags = var.tags
}


Expand All @@ -59,6 +61,7 @@ resource "aws_iam_policy" "policies" {
path = each.value.path != null ? each.value.path : var.policy_path
description = each.value.desc != null ? each.value.desc : var.policy_desc
policy = templatefile(each.value.file, each.value.vars)
tags = var.tags
}


Expand Down

0 comments on commit a44ef6e

Please sign in to comment.