Skip to content

Commit

Permalink
Start to update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Nemetz committed Dec 15, 2017
1 parent 2c9355d commit 8d807d9
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,23 @@

Terraform module to provision an AWS [`EFS`](https://aws.amazon.com/efs/) Network File System.

### README needs to be updated. Does not currently match module

## Usage

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

```hcl
module "efs" {
source = "git::https://github.com/cloudposse/terraform-aws-efs.git?ref=master"
namespace = "global"
name = "app"
stage = "prod"
attributes = "efs"
aws_region = "${var.aws_region}"
vpc_id = "${var.vpc_id}"
subnets = "${var.private_subnets}"
availability_zones = ["${var.availability_zones}"]
security_groups = ["${var.security_group_id}"]
source = "devops-workflow/efs/aws"
version = "0.4.0"
name = "app"
attributes = "efs"
region = "${var.aws_region}"
vpc_id = "${var.vpc_id}"
subnets = "${var.private_subnets}"
security_groups = ["${var.security_group_id}"]
zone_id = "${var.aws_route53_dns_zone_id}"
}
Expand Down

0 comments on commit 8d807d9

Please sign in to comment.