File tree 3 files changed +9
-3
lines changed 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ NAME READY STATUS
20
20
eks-blueprints-addon-ingress-nginx-78b8567p4q6 1/1 Running 0 4d10h
21
21
```
22
22
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.
24
24
25
25
You can optionally customize the Helm chart that deploys ` nginx ` via the following configuration.
26
26
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ data "aws_eks_cluster_auth" "cluster" {
34
34
}
35
35
36
36
provider "aws" {
37
- region = " us-west-2 "
37
+ region = var . region
38
38
alias = " default"
39
39
}
40
40
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ variable "environment" {
18
18
19
19
variable "zone" {
20
20
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..."
22
22
default = " dev"
23
23
}
24
+
25
+ variable "region" {
26
+ type = string
27
+ description = " Region in which to deploy the cluster"
28
+ default = " us-west-2"
29
+ }
You can’t perform that action at this time.
0 commit comments