Skip to content

Commit

Permalink
Merge pull request #37 from byu-oit/aws-4
Browse files Browse the repository at this point in the history
allow aws provider 4
  • Loading branch information
joshgubler authored Mar 11, 2022
2 parents cfe16ca + 350f1ba commit 412ad9d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This module retrieves some basic [ACS](https://github.com/byu-oit/aws-acs) infor

```hcl
module "acs" {
source = "github.com/byu-oit/terraform-aws-acs-info.git?ref=v3.4.0"
source = "github.com/byu-oit/terraform-aws-acs-info.git?ref=v3.4.1"
}
```

Expand Down
2 changes: 1 addition & 1 deletion examples/ci-12/ci.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
}

provider "aws" {
version = "~> 3.0"
version = ">= 3.0"
region = "us-west-2"
}

Expand Down
2 changes: 1 addition & 1 deletion examples/ci-13/ci.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
}

provider "aws" {
version = "~> 3.0"
version = ">= 3.0"
region = "us-west-2"
}

Expand Down
2 changes: 1 addition & 1 deletion examples/simple/simple.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

module "acs" {
source = "github.com/byu-oit/terraform-aws-acs-info?ref=v3.4.0"
source = "github.com/byu-oit/terraform-aws-acs-info?ref=v3.4.1"
}

output "vpc_id" {
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_version = ">= 0.12.17"
required_providers {
aws = "~> 3.0"
aws = ">= 3.0"
}
}

Expand Down

0 comments on commit 412ad9d

Please sign in to comment.