Skip to content

Commit

Permalink
fix: tf format and minor readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sanketnadkarni committed Mar 3, 2024
1 parent cbb9750 commit c76b93b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion database-grants/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ Use correct version:
```bash
tfenv use min-required
```
OR
OR if you configure `.terraform-version`

```bash
echo "1.4.6" > .terraform-version
tfenv use # this will configure the correct version from .terraform-version file
```

Expand Down
2 changes: 1 addition & 1 deletion database-grants/terraform/dev/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ variable "password" {

terraform {
# Ref: https://developer.hashicorp.com/terraform/tutorials/configuration-language/versions#review-example-configuration
required_version = "~> 1.4.6"
required_version = "~> 1.4.6"

required_providers {
postgresql = {
Expand Down
2 changes: 1 addition & 1 deletion database-grants/terraform/prod/backend.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ terraform {
skip_credentials_validation = true
# skip_get_ec2_platforms = true
skip_requesting_account_id = true
skip_metadata_api_check = true
skip_metadata_api_check = true
}
}

0 comments on commit c76b93b

Please sign in to comment.