Skip to content

Commit fe99031

Browse files
Lingling PengLingling Peng
authored andcommitted
use external-secret instead of external_secret
1 parent 0997606 commit fe99031

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

deployments/stacks/dpe-k8s-deployments/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module "argo-cd" {
2929
source = "../../../modules/argo-cd"
3030
}
3131

32-
module "external_secrets" {
32+
module "external-secrets" {
3333
source = "../../../modules/external-secrets"
3434
region = var.region
3535
aws_account_id = var.aws_account_id

modules/external-secrets/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
resource "kubernetes_namespace" "external_secrets" {
1+
resource "kubernetes_namespace" "external-secrets" {
22
metadata { name = var.namespace }
33
}
44

55

66
# Argo CD Application that installs ESO from the official Helm repo
7-
resource "kubectl_manifest" "external_secrets_app" {
7+
resource "kubectl_manifest" "external-secrets-app" {
88
yaml_body = <<YAML
99
apiVersion: argoproj.io/v1alpha1
1010
kind: Application

modules/external-secrets/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ variable "auto_prune" {
1919
variable "namespace" {
2020
description = "The namespace to deploy into"
2121
type = string
22-
default = "external_secrets"
22+
default = "external-secrets"
2323
}
2424

2525
variable "region" {

0 commit comments

Comments
 (0)