Skip to content

Commit 4f25818

Browse files
committed
initialize
1 parent 92b9d9a commit 4f25818

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Terraform code
1+
# Terraform code
22

33
## Maintain vpc & eks with terraform for vprofile project
44

55
## Tools required
66
Terraform version 1.6.3
77

8-
### Steps
8+
### Steps from scratch
99
* terraform init
1010
* terraform fmt -check
1111
* terraform validate

terraform/terraform.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ terraform {
2727
}
2828

2929
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"
3333
}
3434

3535
required_version = "~> 1.6.3"

terraform/variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
variable "region" {
22
description = "AWS region"
33
type = string
4-
default = "us-east-2"
4+
default = "us-east-1"
55
}
66

77
variable "clusterName" {
88
description = "Name of the EKS cluster"
99
type = string
10-
default = "kitops-eks"
10+
default = "vprofile-eks"
1111
}

0 commit comments

Comments
 (0)