Skip to content

Commit 7bb37cc

Browse files
committed
docs(update): update the readme to match the file structure
1 parent bd7fa8e commit 7bb37cc

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

argocd/deploy-argocd/README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,8 @@ This Terraform module deploys **ArgoCD** into a Kubernetes cluster using the off
88

99
```text
1010
.
11-
├── modules/
12-
│ └── argocd/ # Core Logic (Don't touch unless modifying the blueprint)
13-
└── environments/
14-
└── control-plane/ # Deployment configuration for your specific cluster
15-
├── main.tf
16-
├── variables.tf # Define your cluster context and secrets here
17-
├── terraform.tfvars # (Optional) Store non-sensitive values here
18-
└── providers.tf # Configures connection to the specific K8s cluster
11+
├── main.tf
12+
├── provider.tf
13+
├── README.md
14+
├── terraform.tfvars # Create this file to include you variables as in the terraform.tfvars.template file
15+
└── variables.tf
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
keycloak_url = "https://keycloak.18.198.59.109.sslip.io"
2+
keycloak_user = "admin"
3+
keycloak_password = "your-strong-secret-password" # this is to authenticate to keycloak
4+
argocd_url = "https://example.com"
5+
target_realm = "master" # or your specific realm
6+
kube_context = "gke_project-id_region_cluster-name"

0 commit comments

Comments
 (0)