From 2ac231595b90e4c35ed51849fb6ab8273bc6b0cf Mon Sep 17 00:00:00 2001 From: Kristina Solovyova Date: Fri, 18 Oct 2024 12:52:36 +0300 Subject: [PATCH] feat: add ec2:CreateTags action to default clients ec2 iam policy --- modules/clients/iam.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/clients/iam.tf b/modules/clients/iam.tf index 4dc4e1f0..c70caa2a 100644 --- a/modules/clients/iam.tf +++ b/modules/clients/iam.tf @@ -19,7 +19,8 @@ resource "aws_iam_policy" "ec2" { "ec2:ModifyNetworkInterfaceAttribute", "ec2:DeleteNetworkInterface", "ec2:DescribeInstances", - "ec2:DescribeInstanceTypes" + "ec2:DescribeInstanceTypes", + "ec2:CreateTags", ] Resource = "*" }