From d69a432f54ba0ecefb8ece1d646375f6059c219d Mon Sep 17 00:00:00 2001 From: Florian0410 Date: Thu, 16 Dec 2021 18:36:21 +0100 Subject: [PATCH] Add missing tags to instance_profile (#200) * Add missing tags to instance_profile * Auto Format Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com> --- main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/main.tf b/main.tf index 328e75bd..b4712ceb 100755 --- a/main.tf +++ b/main.tf @@ -295,6 +295,7 @@ data "aws_iam_policy_document" "extended" { resource "aws_iam_instance_profile" "ec2" { name = "${module.this.id}-eb-ec2" role = aws_iam_role.ec2.name + tags = module.this.tags } module "security_group" {