Skip to content

Commit

Permalink
update eks_argo example with newer versions (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
oavdeev authored Sep 26, 2023
1 parent 52afa7c commit 4bb245d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions examples/eks_argo/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.8.0"
version = "0.10.0"

force_destroy_s3_bucket = true

Expand All @@ -37,18 +37,18 @@ module "metaflow-datastore" {

module "metaflow-common" {
source = "outerbounds/metaflow/aws//modules/common"
version = "0.8.0"
version = "0.10.0"
}

module "metaflow-metadata-service" {
source = "outerbounds/metaflow/aws//modules/metadata-service"
version = "0.8.0"
version = "0.10.0"

resource_prefix = local.resource_prefix
resource_suffix = local.resource_suffix

access_list_cidr_blocks = []
api_basic_auth = true
enable_api_basic_auth = true
database_name = module.metaflow-datastore.database_name
database_password = module.metaflow-datastore.database_password
database_username = module.metaflow-datastore.database_username
Expand Down
2 changes: 1 addition & 1 deletion examples/eks_argo/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# VPC infra using https://github.com/terraform-aws-modules/terraform-aws-vpc
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "3.13.0"
version = "5.1.2"

name = "${local.resource_prefix}-${local.resource_suffix}"
cidr = "10.10.0.0/16"
Expand Down

0 comments on commit 4bb245d

Please sign in to comment.