generated from ministryofjustice/ap-terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iam_external_dns.tf
51 lines (44 loc) · 1.24 KB
/
iam_external_dns.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
module "iam_assumable_role_external_dns" {
source = "github.com/ministryofjustice/ap-terraform-iam-roles//eks-role?ref=v1.4.2"
depends_on = [
module.eks
]
role_name_prefix = "ExternalDNS"
role_description = "external dns role for cluster ${module.eks.cluster_id}"
role_policy_arns = [aws_iam_policy.external_dns.arn]
provider_url = module.eks.cluster_oidc_issuer_url
cluster_service_accounts = ["external-dns:external-dns"]
tags = {
cluster = var.cluster_name
}
}
resource "aws_iam_policy" "external_dns" {
depends_on = [
module.eks
]
name_prefix = "ExternalDNS"
description = "external dns policy for cluster ${module.eks.cluster_id}"
policy = data.aws_iam_policy_document.external_dns.json
tags = {
cluster = var.cluster_name
}
}
data "aws_iam_policy_document" "external_dns" {
statement {
sid = "externalDNSListHostedZones"
effect = "Allow"
actions = [
"route53:ListHostedZones",
]
resources = ["*"]
}
statement {
sid = "externalDNSResourceRecordSets"
effect = "Allow"
actions = [
"route53:ChangeResourceRecordSets",
"route53:ListResourceRecordSets",
]
resources = [var.route53_zone_arn]
}
}