-
Notifications
You must be signed in to change notification settings - Fork 62
Description
Hello
Thank you for these great ressources, I am trying to use and deploy meta flow on aws with kubernetes with these given instructions:
https://github.com/outerbounds/terraform-aws-metaflow/tree/master/examples/eks_argo
When I generate my config, with terraform init, there is still the deprecated name for the db that is being generated
.terraform/modules/metaflow-datastore/modules/datastore/rds.tf
as fixed by: #65
I also have unsupported arguments:
27 enable_classiclink = var.enable_classiclink
28 enable_classiclink_dns_support = var.enable_classiclink_dns_support
1237 enable_classiclink = var.default_vpc_enable_classiclink
in the generated file .terraform/modules/vpc/main.tf
Did anyone encounter this issue also?
I modify directly these generated files by commenting on these lines and modifying the name to db_name (very bad practice I know). and it deployed correctly my metaflow stack.
Thank you