File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed
Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change 22
33Terraform module to provision an AWS [ ` EFS ` ] ( https://aws.amazon.com/efs/ ) Network File System.
44
5+ ### README needs to be updated. Does not currently match module
56
67## Usage
78
89Include this repository as a module in your existing terraform code:
910
1011``` hcl
1112module "efs" {
12- source = "git::https://github.com/cloudposse/terraform-aws-efs.git?ref=master"
13- namespace = "global"
14- name = "app"
15- stage = "prod"
16- attributes = "efs"
17-
18- aws_region = "${var.aws_region}"
19- vpc_id = "${var.vpc_id}"
20- subnets = "${var.private_subnets}"
21- availability_zones = ["${var.availability_zones}"]
22- security_groups = ["${var.security_group_id}"]
13+ source = "devops-workflow/efs/aws"
14+ version = "0.4.0"
15+ name = "app"
16+ attributes = "efs"
17+
18+ region = "${var.aws_region}"
19+ vpc_id = "${var.vpc_id}"
20+ subnets = "${var.private_subnets}"
21+ security_groups = ["${var.security_group_id}"]
2322
2423 zone_id = "${var.aws_route53_dns_zone_id}"
2524}
You can’t perform that action at this time.
0 commit comments