Skip to content

Commit

Permalink
argocd to cd rename in vcs main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
sergs-pci committed Jul 18, 2024
1 parent 016dc47 commit 5e27e30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions platform/terraform/vcs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform {
locals {
gitops_repo_name = "<GITOPS_REPOSITORY_NAME>"
atlantis_url = "https://<IAC_PR_AUTOMATION_INGRESS_URL>/events"
argocd_webhook_url = "https://<CD_INGRESS_URL>/api/webhook"
cd_webhook_url = "https://<CD_INGRESS_URL>/api/webhook"
cluster_name = "<PRIMARY_CLUSTER_NAME>"
vcs_owner = "<GIT_ORGANIZATION_NAME>"
vcs_subscription_plan = <GIT_SUBSCRIPTION_PLAN> # bool true(paid plans) / false (free tier)
Expand All @@ -26,8 +26,8 @@ module "vcs" {
gitops_repo_name = local.gitops_repo_name
atlantis_url = local.atlantis_url
atlantis_repo_webhook_secret = var.atlantis_repo_webhook_secret
argocd_webhook_url = local.argocd_webhook_url
argocd_webhook_secret = var.argocd_webhook_secret
cd_webhook_url = local.cd_webhook_url
cd_webhook_secret = var.cd_webhook_secret
vcs_bot_ssh_public_key = var.vcs_bot_ssh_public_key
workloads = var.workloads
cluster_name = local.cluster_name
Expand Down

0 comments on commit 5e27e30

Please sign in to comment.