Skip to content

Commit 8d807d9

Browse files
author
Steven Nemetz
committed
Start to update readme
1 parent 2c9355d commit 8d807d9

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,23 @@
22

33
Terraform 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

89
Include this repository as a module in your existing terraform code:
910

1011
```hcl
1112
module "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
}

0 commit comments

Comments
 (0)