-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
120 lines (101 loc) · 3.38 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
resource "null_resource" "dependencies" {
triggers = var.dependency_ids
}
resource "argocd_project" "this" {
count = var.argocd_project == null ? 1 : 0
metadata {
name = var.destination_cluster != "in-cluster" ? "ebs-csi-driver-${var.destination_cluster}" : "ebs-csi-driver"
namespace = "argocd"
}
spec {
description = "EBS CSI driver application project for cluster ${var.destination_cluster}"
source_repos = ["https://github.com/camptocamp/devops-stack-module-ebs-csi-driver.git"]
destination {
name = var.destination_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)]
}
module "iam_assumable_role_ebs" {
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("ebs-csi-driver-%s-", var.cluster_name)
provider_url = replace(var.cluster_oidc_issuer_url, "https://", "")
role_policy_arns = ["arn:aws:iam::aws:policy/service-role/AmazonEBSCSIDriverPolicy"] # Use the default IAM policy provided by AWS
# List of ServiceAccounts that have permission to attach to this IAM role
oidc_fully_qualified_subjects = [
"system:serviceaccount:kube-system:ebs-csi-controller-sa",
]
}
resource "argocd_application" "this" {
metadata {
name = var.destination_cluster != "in-cluster" ? "ebs-csi-driver-${var.destination_cluster}" : "ebs-csi-driver"
namespace = "argocd"
labels = merge({
"application" = "ebs-csi-driver"
"cluster" = var.destination_cluster
}, var.argocd_labels)
}
timeouts {
create = "15m"
delete = "15m"
}
wait = var.app_autosync == { "allow_empty" = tobool(null), "prune" = tobool(null), "self_heal" = tobool(null) } ? false : true
spec {
project = var.argocd_project == null ? argocd_project.this[0].metadata.0.name : var.argocd_project
source {
repo_url = "https://github.com/camptocamp/devops-stack-module-ebs-csi-driver.git"
path = "charts/ebs-csi-driver"
target_revision = var.target_revision
helm {
release_name = "efs-csi-driver"
values = data.utils_deep_merge_yaml.values.output
}
}
destination {
name = var.destination_cluster
namespace = "kube-system"
}
sync_policy {
dynamic "automated" {
for_each = toset(var.app_autosync == { "allow_empty" = tobool(null), "prune" = tobool(null), "self_heal" = tobool(null) } ? [] : [var.app_autosync])
content {
prune = automated.value.prune
self_heal = automated.value.self_heal
allow_empty = automated.value.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,
]
}