We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3bc6c9 commit b1898a2Copy full SHA for b1898a2
aws_lb_controller.tf
@@ -37,6 +37,8 @@ data "aws_iam_policy_document" "lb_controller" {
37
"ec2:GetCoipPoolUsage",
38
"ec2:DescribeCoipPools",
39
"ec2:GetSecurityGroupsForVpc",
40
+ "ec2:DescribeIpamPools",
41
+ "ec2:DescribeRouteTables",
42
"elasticloadbalancing:DescribeLoadBalancers",
43
"elasticloadbalancing:DescribeLoadBalancerAttributes",
44
"elasticloadbalancing:DescribeListeners",
@@ -81,6 +83,12 @@ data "aws_iam_policy_document" "lb_controller" {
81
83
actions = [
82
84
"ec2:AuthorizeSecurityGroupIngress",
85
"ec2:RevokeSecurityGroupIngress",
86
+ ]
87
+ resources = ["*"]
88
+ }
89
+
90
+ statement {
91
+ actions = [
92
"ec2:CreateSecurityGroup",
93
]
94
resources = ["*"]
0 commit comments