generated from ministryofjustice/ap-terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from ministryofjustice/ANPL-1225-fix2
fix: add IAM role for the EBS CSI driver
- Loading branch information
Showing
2 changed files
with
55 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
module "iam_assumable_role_ebs_csi_driver" { | ||
source = "git@github.com:ministryofjustice/ap-terraform-iam-roles.git//eks-role?ref=v1.3.0" | ||
depends_on = [ | ||
module.eks | ||
] | ||
role_name_prefix = "EbsCsiDriver" | ||
role_description = "ebs_csi_driver role for cluster ${module.eks.cluster_id}" | ||
role_policy_arns = [aws_iam_policy.ebs_csi_driver.arn] | ||
provider_url = module.eks.cluster_oidc_issuer_url | ||
cluster_service_accounts = ["kube-system:ebs-csi-controller-sa"] | ||
tags = { | ||
cluster = var.cluster_name | ||
} | ||
} | ||
|
||
resource "aws_iam_policy" "ebs_csi_driver" { | ||
depends_on = [ | ||
module.eks | ||
] | ||
name_prefix = "EbsCsiDriver" | ||
description = "ebs_csi_driver policy for cluster ${module.eks.cluster_id}" | ||
policy = data.aws_iam_policy_document.ebs_csi_driver.json | ||
tags = { | ||
cluster = var.cluster_name | ||
} | ||
} | ||
|
||
data "aws_iam_policy_document" "ebs_csi_driver" { | ||
statement { | ||
actions = [ | ||
"ec2:AttachVolume", | ||
"ec2:CreateSnapshot", | ||
"ec2:CreateTags", | ||
"ec2:CreateVolume", | ||
"ec2:DeleteSnapshot", | ||
"ec2:DeleteTags", | ||
"ec2:DeleteVolume", | ||
"ec2:DescribeInstances", | ||
"ec2:DescribeSnapshots", | ||
"ec2:DescribeTags", | ||
"ec2:DescribeVolumes", | ||
"ec2:DetachVolume" | ||
] | ||
effect = "Allow" | ||
resources = ["*"] | ||
sid = "EbsCsiDriver" | ||
} | ||
} |