-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
156 lines (135 loc) · 3.67 KB
/
main.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
resource "null_resource" "dependencies" {
triggers = var.dependency_ids
}
resource "argocd_project" "this" {
metadata {
name = "efs-csi-driver"
namespace = var.argocd_namespace
annotations = {
"devops-stack.io/argocd_namespace" = var.argocd_namespace
}
}
spec {
description = "EFS CSI driver application project"
source_repos = ["https://github.com/camptocamp/devops-stack-module-efs-csi-driver.git"]
destination {
name = "in-cluster"
namespace = "kube-system"
}
orphaned_resources {
warn = true
}
cluster_resource_whitelist {
group = "*"
kind = "*"
}
}
}
data "utils_deep_merge_yaml" "values" {
input = [for i in concat(local.helm_values, var.helm_values) : yamlencode(i)]
}
resource "aws_iam_policy" "efs" {
name_prefix = "efs-csi-driver-"
policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Effect = "Allow"
Action = [
"elasticfilesystem:DescribeAccessPoints",
"elasticfilesystem:DescribeFileSystems",
"elasticfilesystem:DescribeMountTargets",
"ec2:DescribeAvailabilityZones"
]
Resource = "*"
},
{
Effect = "Allow"
Action = [
"elasticfilesystem:CreateAccessPoint"
]
Resource = "*"
Condition = {
StringLike = {
"aws:RequestTag/efs.csi.aws.com/cluster" = "true"
}
}
},
{
Effect = "Allow"
Action = "elasticfilesystem:DeleteAccessPoint"
Resource = "*"
Condition = {
StringEquals = {
"aws:ResourceTag/efs.csi.aws.com/cluster" = "true"
}
}
}
]
})
}
module "iam_assumable_role_efs" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc"
version = "~> 5.0"
create_role = var.create_role
number_of_role_policy_arns = 1
role_name_prefix = format("efs-csi-driver-%s-", var.cluster_name)
provider_url = replace(var.cluster_oidc_issuer_url, "https://", "")
role_policy_arns = [resource.aws_iam_policy.efs.arn]
# List of ServiceAccounts that have permission to attach to this IAM role
oidc_fully_qualified_subjects = [
"system:serviceaccount:kube-system:efs-csi-controller-sa",
]
}
resource "argocd_application" "this" {
metadata {
name = "efs-csi-driver"
namespace = var.argocd_namespace
}
timeouts {
create = "15m"
delete = "15m"
}
wait = var.app_autosync == { "allow_empty" = tobool(null), "prune" = tobool(null), "self_heal" = tobool(null) } ? false : true
spec {
project = argocd_project.this.metadata.0.name
source {
repo_url = "https://github.com/camptocamp/devops-stack-module-efs-csi-driver.git"
path = "charts/efs-csi-driver"
target_revision = var.target_revision
helm {
values = data.utils_deep_merge_yaml.values.output
}
}
destination {
name = "in-cluster"
namespace = "kube-system"
}
sync_policy {
automated {
prune = var.app_autosync.prune
self_heal = var.app_autosync.self_heal
allow_empty = var.app_autosync.allow_empty
}
retry {
backoff {
duration = "20s"
max_duration = "2m"
factor = "2"
}
limit = "5"
}
sync_options = [
"CreateNamespace=true"
]
}
}
depends_on = [
resource.null_resource.dependencies,
]
}
resource "null_resource" "this" {
depends_on = [
resource.argocd_application.this,
]
}