Skip to content

Commit

Permalink
Updates Terraform lockfile to use updated AWS provider
Browse files Browse the repository at this point in the history
  • Loading branch information
gcardonag committed Jan 27, 2024
1 parent 846bea0 commit 7936430
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 30 deletions.
58 changes: 29 additions & 29 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,10 @@ This file is for common resources that should be used across all PHLASK environm
This file is to store [Terraform Locals](https://developer.hashicorp.com/terraform/language/values/locals). These are local variables that are handy when you want to create a complex/dynamic value and propagate it across multiple portions of the Terraform code.

### provider
Configures any [Terraform Providers](https://developer.hashicorp.com/terraform/language/providers) which are the core modules that allow our Terraform code to interact with the systems that Terraform is intended to manage (ex - AWS).
Configures any [Terraform Providers](https://developer.hashicorp.com/terraform/language/providers) which are the core modules that allow our Terraform code to interact with the systems that Terraform is intended to manage (ex - AWS).

## Project Maintenance
### Updating Terraform lockfile
Ocasionally the Terraform lockfile will need to be updated to ensure we are using the latest version of each provider. To do this locally:
- With a local copy of Terraform: `terraform init -backend=false -upgrade`
- With Docker on MacOS, run the following from the base of this project: `docker run -v $(pwd):/usr/local/src -it --workdir /usr/local/src hashicorp/terraform:1.3.5 init -backend=false -upgrade`

0 comments on commit 7936430

Please sign in to comment.