-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 71fa4e9
Showing
1 changed file
with
31 additions
and
0 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,31 @@ | ||
# ht-devops | ||
|
||
## Terraform | ||
We are using Terragrunt as a helper to keep Terraform DRY. | ||
|
||
### Terragrunt | ||
|
||
Download: https://github.com/gruntwork-io/terragrunt | ||
|
||
### AWS Authentication | ||
There are multiple ways to set your AWS authentication access. | ||
|
||
Exporting AWS keys to your local envars | ||
``` | ||
export AWS_ACCESS_KEY_ID="" | ||
export AWS_SECRET_ACCESS_KEY="" | ||
``` | ||
|
||
You can set them in your AWS profile config: ~/.aws/config | ||
|
||
### Usage | ||
|
||
#### Create VPC | ||
|
||
Directory: ./tf-environments/dev/vpc | ||
|
||
Run: | ||
``` | ||
terragrunt apply | ||
``` | ||
# kubernetes-ops |