File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ module "fargate" {
5
5
create_fargate_pod_execution_role = var. create_fargate_pod_execution_role
6
6
fargate_pod_execution_role_name = var. fargate_pod_execution_role_name
7
7
fargate_profiles = var. fargate_profiles
8
+ permissions_boundary = var. permissions_boundary
8
9
iam_path = var. iam_path
9
10
iam_policy_arn_prefix = local. policy_arn_prefix
10
11
subnets = var. subnets
Original file line number Diff line number Diff line change 1
1
resource "aws_iam_role" "eks_fargate_pod" {
2
- count = local. create_eks && var. create_fargate_pod_execution_role ? 1 : 0
3
- name_prefix = format (" %s-fargate" , var. cluster_name )
4
- assume_role_policy = data. aws_iam_policy_document . eks_fargate_pod_assume_role [0 ]. json
5
- tags = var. tags
6
- path = var. iam_path
2
+ count = local. create_eks && var. create_fargate_pod_execution_role ? 1 : 0
3
+ name_prefix = format (" %s-fargate" , var. cluster_name )
4
+ assume_role_policy = data. aws_iam_policy_document . eks_fargate_pod_assume_role [0 ]. json
5
+ permissions_boundary = var. permissions_boundary
6
+ tags = var. tags
7
+ path = var. iam_path
7
8
}
8
9
9
10
resource "aws_iam_role_policy_attachment" "eks_fargate_pod" {
You can’t perform that action at this time.
0 commit comments