Created
March 5, 2020 11:54
-
-
Save jjuarez/588176bc1a94ea26c85a0db7969f795d to your computer and use it in GitHub Desktop.
Medium_Clarity_Airflow_EFS_TF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module “efs” { | |
source = “git::ssh://git@gitlab.clarity.ai/infrastructure/terraform/modules/terraform-aws-efs.git?ref=1.0.2” | |
partner = var.partner | |
system = var.system | |
environment = var.environment | |
name = var.name | |
region = var.region | |
vpc_id = var.vpc_id | |
subnets = var.subnets | |
security_groups = [aws_security_group.efs-airflow-dags.id] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment