Skip to content

Commit 2a136df

Browse files
committed
fix(eks): replace hardcoded values by placeholders
1 parent 8d49e77 commit 2a136df

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

examples/eks/outputs.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ output "cluster_issuers" {
1313
description = "Map containing the cluster issuers created by cert-manager."
1414
value = module.cert-manager.cluster_issuers
1515
}
16-

examples/eks/terraform.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
terraform {
22
backend "s3" {
33
encrypt = true
4-
bucket = "camptocamp-aws-is-sandbox-terraform-state"
5-
key = "15f7abf9-abb4-4847-b4dc-af71574ebdf0"
6-
region = "eu-west-1"
7-
dynamodb_table = "camptocamp-aws-is-sandbox-terraform-statelock"
4+
bucket = "YOUR_BUCKET_NAME"
5+
key = "YOUR_UUID"
6+
region = "YOUR_AWS_REGION"
7+
dynamodb_table = "YOUR_DYNAMODB_TABLE_NAME"
88
}
99

1010
required_providers {

0 commit comments

Comments
 (0)