File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- # Terraform code
1
+ # Terraform code
2
2
3
3
## Maintain vpc & eks with terraform for vprofile project
4
4
5
5
## Tools required
6
6
Terraform version 1.6.3
7
7
8
- ### Steps
8
+ ### Steps from scratch
9
9
* terraform init
10
10
* terraform fmt -check
11
11
* terraform validate
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ terraform {
27
27
}
28
28
29
29
backend "s3" {
30
- bucket = " gitopsterrastate "
31
- key = " terraform.tfstate"
32
- region = " us-east-2 "
30
+ bucket = " vprofileaction3 "
31
+ key = " dev/ terraform.tfstate"
32
+ region = " us-east-1 "
33
33
}
34
34
35
35
required_version = " ~> 1.6.3"
Original file line number Diff line number Diff line change 1
1
variable "region" {
2
2
description = " AWS region"
3
3
type = string
4
- default = " us-east-2 "
4
+ default = " us-east-1 "
5
5
}
6
6
7
7
variable "clusterName" {
8
8
description = " Name of the EKS cluster"
9
9
type = string
10
- default = " kitops -eks"
10
+ default = " vprofile -eks"
11
11
}
You can’t perform that action at this time.
0 commit comments