-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmigrations.tf
More file actions
44 lines (36 loc) · 1.05 KB
/
migrations.tf
File metadata and controls
44 lines (36 loc) · 1.05 KB
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
moved {
from = kubernetes_manifest.this
to = module.addon.kubernetes_manifest.this
}
moved {
from = helm_release.this
to = module.addon.helm_release.this
}
moved {
from = helm_release.argo_application
to = module.addon.helm_release.argo_application
}
moved {
from = kubernetes_job.helm_argo_application_wait
to = module.addon.kubernetes_job.helm_argo_application_wait
}
moved {
from = kubernetes_role.helm_argo_application_wait
to = module.addon.kubernetes_role.helm_argo_application_wait
}
moved {
from = kubernetes_role_binding.helm_argo_application_wait
to = module.addon.kubernetes_role_binding.helm_argo_application_wait
}
moved {
from = kubernetes_service_account.helm_argo_application_wait
to = module.addon.kubernetes_service_account.helm_argo_application_wait
}
moved {
from = aws_iam_role.this
to = module.addon-irsa["registry-cache"].aws_iam_role.this
}
moved {
from = aws_iam_role_policy_attachment.this_additional
to = module.addon-irsa["registry-cache"].aws_iam_role_policy_attachment.this_additional
}