Skip to content

Commit

Permalink
fix: Pattern-blue-green-upgrade update example for tfvars (#1799)
Browse files Browse the repository at this point in the history
Co-authored-by: Carlos Santana <[email protected]>
Co-authored-by: Rodrigo Bersa <[email protected]>
  • Loading branch information
3 people authored Nov 8, 2023
1 parent 2e668ed commit 204aeee
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
1 change: 1 addition & 0 deletions patterns/blue-green-upgrade/environment/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ terraform {
source = "hashicorp/random"
version = ">= 3.0"
}

}
}
19 changes: 12 additions & 7 deletions patterns/blue-green-upgrade/terraform.tfvars.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ environment_name = "eks-blueprint"
hosted_zone_name = "eks.mydomain.org" # your Existing Hosted Zone
eks_admin_role_name = "Admin" # Additional role admin in the cluster (usually the role I use in the AWS console)

# EKS Blueprint AddOns ArgoCD App of App repository
gitops_bridge_repo_url = "[email protected]:gitops-bridge-dev/gitops-bridge-argocd-control-plane-template"
gitops_bridge_repo_revision = "HEAD"
#gitops_addons_org = "[email protected]:aws-samples"
#gitops_addons_repo = "eks-blueprints-add-ons"
#gitops_addons_path = "argocd/bootstrap/control-plane/addons"
#gitops_addons_basepath = "argocd/"

# EKS Blueprint Workloads ArgoCD App of App repository
workload_repo_url = "[email protected]:aws-samples/eks-blueprints-workloads.git"
workload_repo_revision = "main"
workload_repo_path = "envs/dev"
workload_repo_secret = "github-blueprint-ssh-key"
gitops_workloads_org = "[email protected]:aws-samples"
gitops_workloads_repo = "eks-blueprints-workloads"
gitops_workloads_revision = "main"
gitops_workloads_path = "envs/dev"


#Secret manager secret for github ssk jey
aws_secret_manager_git_private_ssh_key_name = "github-blueprint-ssh-key"

0 comments on commit 204aeee

Please sign in to comment.