-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AWS EFS CSI Driver Configuration
Description: - Add a statically provisioned EFS CSI Driver as part of a series of PRs to move asset-manager to `nfs` volume type - PR only installs the CSI Driver but doesn't provision an EFS volume until a `PersistentVolumeClaim` is created in the Helm Chart - See https://github.com/kubernetes-sigs/aws-efs-csi-driver/tree/master/examples/kubernetes/static_provisioning - As part of alphagov/govuk-helm-charts#1883
- Loading branch information
Showing
5 changed files
with
300 additions
and
0 deletions.
There are no files selected for viewing
251 changes: 251 additions & 0 deletions
251
terraform/deployments/cluster-infrastructure/aws_efs_csi_iam.tf
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,251 @@ | ||
locals { | ||
efs_csi_driver_controller_service_account_name = "efs-csi-controller-sa" | ||
} | ||
|
||
module "aws_efs_csi_driver_iam_role" { | ||
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc" | ||
version = "~> 5.0" | ||
create_role = true | ||
role_name = "${local.efs_csi_driver_controller_service_account_name}-${var.cluster_name}" | ||
role_description = "Role for the AWS EFS CSI driver controller. Corresponds to ${local.efs_csi_driver_controller_service_account_name} k8s ServiceAccount." | ||
provider_url = module.eks.oidc_provider | ||
role_policy_arns = [aws_iam_policy.aws_efs_csi_driver.arn] | ||
oidc_fully_qualified_subjects = ["system:serviceaccount:kube-system:${local.efs_csi_driver_controller_service_account_name}"] | ||
} | ||
|
||
data "aws_iam_policy_document" "aws_efs_csi_driver" { | ||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"elasticfilesystem:DescribeAccessPoints", | ||
"elasticfilesystem:DescribeFileSystems", | ||
"elasticfilesystem:DescribeMountTargets", | ||
"ec2:DescribeAvailabilityZones" | ||
] | ||
|
||
resources = ["*"] | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"elasticfilesystem:CreateAccessPoint" | ||
] | ||
|
||
resources = [ | ||
"arn:aws:ec2:*:*:volume/*", | ||
"arn:aws:ec2:*:*:snapshot/*" | ||
] | ||
|
||
condition { | ||
test = "StringEquals" | ||
variable = "ec2:CreateAction" | ||
values = ["CreateVolume", "CreateSnapshot"] | ||
} | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"ec2:DeleteTags" | ||
] | ||
|
||
resources = [ | ||
"arn:aws:ec2:*:*:volume/*", | ||
"arn:aws:ec2:*:*:snapshot/*" | ||
] | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"ec2:CreateVolume" | ||
] | ||
|
||
resources = [ | ||
"*" | ||
] | ||
|
||
condition { | ||
test = "StringLike" | ||
variable = "aws:RequestTag/ebs.csi.aws.com/cluster" | ||
values = ["true"] | ||
} | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"ec2:CreateVolume" | ||
] | ||
|
||
resources = [ | ||
"*" | ||
] | ||
|
||
condition { | ||
test = "StringLike" | ||
variable = "aws:RequestTag/CSIVolumeName" | ||
values = ["*"] | ||
} | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"ec2:CreateVolume" | ||
] | ||
|
||
resources = [ | ||
"*" | ||
] | ||
|
||
condition { | ||
test = "StringLike" | ||
variable = "aws:RequestTag/kubernetes.io/cluster/*" | ||
values = ["owned"] | ||
} | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"ec2:DeleteVolume" | ||
] | ||
|
||
resources = [ | ||
"*" | ||
] | ||
|
||
condition { | ||
test = "StringLike" | ||
variable = "ec2:ResourceTag/ebs.csi.aws.com/cluster" | ||
values = ["true"] | ||
} | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"ec2:DeleteVolume" | ||
] | ||
|
||
resources = [ | ||
"*" | ||
] | ||
|
||
condition { | ||
test = "StringLike" | ||
variable = "ec2:ResourceTag/CSIVolumeName" | ||
values = ["*"] | ||
} | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"ec2:DeleteVolume" | ||
] | ||
|
||
resources = [ | ||
"*" | ||
] | ||
|
||
condition { | ||
test = "StringLike" | ||
variable = "ec2:ResourceTag/kubernetes.io/cluster/*" | ||
values = ["owned"] | ||
} | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"ec2:DeleteSnapshot" | ||
] | ||
|
||
resources = [ | ||
"*" | ||
] | ||
|
||
condition { | ||
test = "StringLike" | ||
variable = "ec2:ResourceTag/CSIVolumeSnapshotName" | ||
values = ["*"] | ||
} | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"elasticfilesystem:CreateAccessPoint" | ||
] | ||
|
||
resources = [ | ||
"*" | ||
] | ||
|
||
condition { | ||
test = "StringLike" | ||
variable = "aws:RequestTag/efs.csi.aws.com/cluster" | ||
values = ["true"] | ||
} | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"elasticfilesystem:TagResource" | ||
] | ||
|
||
resources = [ | ||
"*" | ||
] | ||
|
||
condition { | ||
test = "StringLike" | ||
variable = "aws:RequestTag/efs.csi.aws.com/cluster" | ||
values = ["true"] | ||
} | ||
} | ||
|
||
statement { | ||
effect = "Allow" | ||
|
||
actions = [ | ||
"elasticfilesystem:DeleteAccessPoint" | ||
] | ||
|
||
resources = [ | ||
"*" | ||
] | ||
|
||
condition { | ||
test = "StringLike" | ||
variable = "aws:RequestTag/efs.csi.aws.com/cluster" | ||
values = ["true"] | ||
} | ||
} | ||
} | ||
|
||
resource "aws_iam_policy" "aws_efs_csi_driver" { | ||
name = "AWSEfsCsiController-${var.cluster_name}" | ||
description = "Allow the driver to manage AWS EFS" | ||
|
||
# Verbatim contents of | ||
# https://raw.githubusercontent.com/kubernetes-sigs/aws-efs-csi-driver/refs/heads/master/docs/iam-policy-example.json | ||
# (except for whitespace changes from terraform fmt). | ||
policy = data.aws_iam_policy_document.aws_efs_csi_driver.json | ||
} |
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
29 changes: 29 additions & 0 deletions
29
terraform/deployments/cluster-services/aws_efs_csi_driver.tf
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,29 @@ | ||
resource "helm_release" "efs_csi_driver" { | ||
chart = "aws-efs-csi-driver" | ||
name = "aws-efs-csi-driver" | ||
namespace = "kube-system" | ||
repository = "https://kubernetes-sigs.github.io/aws-efs-csi-driver" | ||
version = "3.1.1" # TODO: Dependabot or equivalent so this doesn't get neglected. | ||
|
||
values = [yamlencode({ | ||
controller = { | ||
serviceAccount = { | ||
create = true | ||
name = data.tfe_outputs.cluster_infrastructure.nonsensitive_values.aws_efs_csi_driver_controller_service_account_name | ||
annotations = { | ||
"eks.amazonaws.com/role-arn" = data.tfe_outputs.cluster_infrastructure.nonsensitive_values.aws_efs_csi_driver_iam_role_arn | ||
} | ||
} | ||
} | ||
storageClasses = [{ | ||
name = "assets_efs-efs-sc" | ||
apiVersion = "storage.k8s.io/v1" | ||
mountOptions = ["tls"] | ||
parameters = { | ||
fileSystemId = data.tfe_outputs.govuk_publishing_infrastructure.nonsensitive_values.assets_efs_id | ||
} | ||
reclaimPolicy = "Retain" | ||
volumeBindingMode = "WaitForFirstConsumer" | ||
}] | ||
})] | ||
} |
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
5 changes: 5 additions & 0 deletions
5
terraform/deployments/govuk-publishing-infrastructure/outputs.tf
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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
output "eks_ingress_www_origin_security_group_name" { | ||
value = aws_security_group.eks_ingress_www_origin.name | ||
} | ||
|
||
output "assets_efs_id" { | ||
description = "EFS Filesystem ID for assets" | ||
value = aws_efs_file_system.assets_efs.id | ||
} |