diff --git a/bootstrap/terraform/main.tf b/bootstrap/terraform/main.tf index 3253aeaa..dcdfa6a0 100644 --- a/bootstrap/terraform/main.tf +++ b/bootstrap/terraform/main.tf @@ -152,7 +152,7 @@ module "eks_blueprints_addons" { wait = true timeout = "600" values = [ - templatefile("${path.module}/values/argocd-stack.yaml", { + templatefile("${path.module}/values/argocd.yaml", { crossplane_aws_provider_enable = local.aws_provider.enable crossplane_upjet_aws_provider_enable = local.upjet_aws_provider.enable crossplane_kubernetes_provider_enable = local.kubernetes_provider.enable @@ -171,7 +171,7 @@ module "eks_blueprints_addons" { kube_prometheus_stack = { wait = true timeout = "600" - values = [file("${path.module}/values/prometheus-stack.yaml")] + values = [file("${path.module}/values/prometheus.yaml")] } depends_on = [module.eks.eks_managed_node_groups] @@ -191,7 +191,7 @@ module "crossplane" { chart = "crossplane" chart_version = "1.16.0" repository = "https://charts.crossplane.io/stable/" - values = [file("${path.module}/values/crossplane-stack.yaml")] + values = [file("${path.module}/values/crossplane.yaml")] depends_on = [module.eks.eks_managed_node_groups] } diff --git a/bootstrap/terraform/values/argocd-stack.yaml b/bootstrap/terraform/values/argocd.yaml similarity index 100% rename from bootstrap/terraform/values/argocd-stack.yaml rename to bootstrap/terraform/values/argocd.yaml diff --git a/bootstrap/terraform/values/crossplane-stack.yaml b/bootstrap/terraform/values/crossplane.yaml similarity index 100% rename from bootstrap/terraform/values/crossplane-stack.yaml rename to bootstrap/terraform/values/crossplane.yaml diff --git a/bootstrap/terraform/values/prometheus-stack.yaml b/bootstrap/terraform/values/prometheus.yaml similarity index 100% rename from bootstrap/terraform/values/prometheus-stack.yaml rename to bootstrap/terraform/values/prometheus.yaml