Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Terraform provider aws upgrade v3 (#16)
Browse files Browse the repository at this point in the history
* Upgrade terraform aws provider to v2.7

* updated docs

* Upgrade terraform aws provider to v3

* updated docs

* fix tests
  • Loading branch information
1337blue authored Feb 15, 2021
1 parent f7d1553 commit 23248ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ MIT Licensed. See [LICENSE](LICENSE) for full details.
| Name | Version |
|------|---------|
| terraform | >= 0.12 |
| aws | ~> 2.0 |
| aws | ~> 3.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | ~> 3.0 |
| null | n/a |

## Inputs
Expand Down
2 changes: 1 addition & 1 deletion test/vpc_localstack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ func ValidateVPCRoute53ZoneName(t *testing.T, terraformOptions *terraform.Option
private_subdomain := terraform.Output(t, terraformOptions, "private_subdomain")

require.Equal(t, terraformOptions.Vars["subdomain"], public_subdomain)
require.Equal(t, fmt.Sprintf("%s-net0ps.com.", terraformOptions.Vars["vpc_name"]), private_subdomain)
require.Equal(t, fmt.Sprintf("%s-net0ps.com", terraformOptions.Vars["vpc_name"]), private_subdomain)
}

func ValidateVPCRoutingTables(t *testing.T, terraformOptions *terraform.Options) {
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
terraform {
required_version = ">= 0.12"
required_providers {
aws = "~> 2.0"
aws = "~> 3.0"
}
}

0 comments on commit 23248ac

Please sign in to comment.