File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed
Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments