Skip to content

Commit

Permalink
add a way to use the module with AWS provider 4.9+ (#31)
Browse files Browse the repository at this point in the history
* add a way to use terraform 4.9+

* update examples
  • Loading branch information
oavdeev authored Jun 22, 2022
1 parent b91399d commit 119d3c5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/eks/metaflow.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ data "aws_availability_zones" "available" {

module "metaflow-datastore" {
source = "outerbounds/metaflow/aws//modules/datastore"
version = "0.3.2"
version = "0.5.2"

force_destroy_s3_bucket = true

Expand Down
2 changes: 1 addition & 1 deletion examples/eks/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_version = ">= 0.13.1"

required_providers {
aws = ">= 3.54.0, <4.0"
aws = ">= 3.54.0"
random = ">= 2.1"
}
}
2 changes: 1 addition & 1 deletion examples/minimal/minimal_example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module "vpc" {

module "metaflow" {
source = "outerbounds/metaflow/aws"
version = "0.3.0"
version = "0.5.2"

resource_prefix = local.resource_prefix
resource_suffix = local.resource_suffix
Expand Down
2 changes: 1 addition & 1 deletion examples/minimal/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_version = ">= 0.13.1"

required_providers {
aws = ">= 3.54.0, <4.0"
aws = ">= 3.54.0"
random = ">= 2.1"
}
}
2 changes: 1 addition & 1 deletion modules/datastore/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.38.0, < 4.0"
version = ">= 3.38.0, != 4.8.0, != 4.7.0, != 4.6.0, != 4.5.0, != 4.4.0, != 4.3.0, != 4.2.0, != 4.1.0, != 4.0.0"
}
random = {
source = "hashicorp/random"
Expand Down

0 comments on commit 119d3c5

Please sign in to comment.