-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: change user from cs to eleve, add env vars for tp(#7)
* feat: change user from cs to eleve * feat: add env vars for tp * fix: remove deprecated aws profile Co-authored-by: Antoine Ansari <[email protected]>
- Loading branch information
Showing
8 changed files
with
50 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Local .terraform directories | ||
**/.terraform/* | ||
|
||
# .tfstate files | ||
*.tfstate | ||
*.tfstate.* | ||
.terraform.lock.hcl | ||
|
||
# Crash log files | ||
crash.log | ||
|
||
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most | ||
# .tfvars files are managed as part of configuration and so should be included in | ||
# version control. | ||
# | ||
# example.tfvars | ||
|
||
# Ignore override files as they are usually used to override resources locally and so | ||
# are not checked in | ||
override.tf | ||
override.tf.json | ||
*_override.tf | ||
*_override.tf.json | ||
|
||
# Include override files you do wish to add to version control using negated pattern | ||
# | ||
# !example_override.tf | ||
|
||
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan | ||
# example: *tfplan* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
environment = "dev" | ||
vpc_id = "vpc-0fbfe8a414325b6e6" | ||
private_subnets = ["subnet-0e185b7265256ab22", "subnet-0b4e47a0eb4f52406"] | ||
public_subnets = ["subnet-000da12999c598b26", "subnet-054b28934c16043b5"] | ||
|
||
aws_region = "eu-west-3" | ||
environment = "dev" | ||
vpc_id = "vpc-02b1b1107bdb3dad4" | ||
public_subnets = ["subnet-0fd3481b698bd44b7","subnet-0f60f004d87f6e1c5"] | ||
private_subnets = ["subnet-07291e52d7cc7d0aa","subnet-0c1eef5af5c50f14a"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
|
||
environment = "prd" | ||
vpc_id = "vpc-06987f5dade98b59a" | ||
private_subnets = ["subnet-0aaae4f50bfd26d64", "subnet-04659d20c010aac58"] | ||
public_subnets = ["subnet-0b93808f63a1676d4", "subnet-023ee16302deb756c"] | ||
aws_region = "eu-west-3" | ||
environment = "prd" | ||
vpc_id = "vpc-0dd9c0f79c31c777e" | ||
public_subnets = ["subnet-01af9d35b4279a9c2","subnet-0267c286d9c051e9c"] | ||
private_subnets = ["subnet-0438f5549da998fd6","subnet-0ea9360b02a77cc08"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
locals { | ||
github_usernames = toset([ | ||
"Anne-Flore","oussamaca" | ||
"Anne-Flore", | ||
"oussamaca", | ||
# Antoine Ansari | ||
"Mohsen51" | ||
]) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters