Skip to content

Commit 119d3c5

Browse files
authored
add a way to use the module with AWS provider 4.9+ (#31)
* add a way to use terraform 4.9+ * update examples
1 parent b91399d commit 119d3c5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/eks/metaflow.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ data "aws_availability_zones" "available" {
2020

2121
module "metaflow-datastore" {
2222
source = "outerbounds/metaflow/aws//modules/datastore"
23-
version = "0.3.2"
23+
version = "0.5.2"
2424

2525
force_destroy_s3_bucket = true
2626

examples/eks/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_version = ">= 0.13.1"
33

44
required_providers {
5-
aws = ">= 3.54.0, <4.0"
5+
aws = ">= 3.54.0"
66
random = ">= 2.1"
77
}
88
}

examples/minimal/minimal_example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module "vpc" {
3838

3939
module "metaflow" {
4040
source = "outerbounds/metaflow/aws"
41-
version = "0.3.0"
41+
version = "0.5.2"
4242

4343
resource_prefix = local.resource_prefix
4444
resource_suffix = local.resource_suffix

examples/minimal/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_version = ">= 0.13.1"
33

44
required_providers {
5-
aws = ">= 3.54.0, <4.0"
5+
aws = ">= 3.54.0"
66
random = ">= 2.1"
77
}
88
}

modules/datastore/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = ">= 3.38.0, < 4.0"
5+
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"
66
}
77
random = {
88
source = "hashicorp/random"

0 commit comments

Comments
 (0)