Skip to content

Commit 6d50f39

Browse files
authored
Fix/ running ArgoCd example on GovCloud (#397)
1 parent 989438a commit 6d50f39

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

docs/add-ons/nginx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ NAME READY STATUS
2020
eks-blueprints-addon-ingress-nginx-78b8567p4q6 1/1 Running 0 4d10h
2121
```
2222

23-
Note that the ingress controller is deployed in the `nginx` namespace.
23+
Note that the ingress controller is deployed in the `ingress-nginx` namespace.
2424

2525
You can optionally customize the Helm chart that deploys `nginx` via the following configuration.
2626

examples/gitops/argocd/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ data "aws_eks_cluster_auth" "cluster" {
3434
}
3535

3636
provider "aws" {
37-
region = "us-west-2"
37+
region = var.region
3838
alias = "default"
3939
}
4040

examples/gitops/argocd/variables.tf

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ variable "environment" {
1818

1919
variable "zone" {
2020
type = string
21-
description = "zone, e.g. dev or qa or load or ops etc..."
21+
description = "Zone, e.g. dev or qa or load or ops etc..."
2222
default = "dev"
2323
}
24+
25+
variable "region" {
26+
type = string
27+
description = "Region in which to deploy the cluster"
28+
default = "us-west-2"
29+
}

0 commit comments

Comments
 (0)