Skip to content

Commit

Permalink
Rename repos, fix README.md (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
aknysh authored Sep 22, 2017
1 parent 03564e3 commit 45ed03b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
*.tfstate.backup

# Module directory
.terraform/
.terraform
.idea
*.iml
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# tf_efs
# terraform-aws-efs

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

Terraform module to provision an AWS EFS Network File System.

## Usage

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

```
```hcl
module "efs" {
source = "git::https://github.com/cloudposse/tf_efs.git?ref=tags/0.2.0"
source = "git::https://github.com/cloudposse/terraform-aws-efs.git?ref=master"
namespace = "global"
name = "app"
stage = "prod"
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Define composite variables for resources
module "label" {
source = "git::https://github.com/cloudposse/tf_label.git?ref=tags/0.2.0"
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.2.1"
namespace = "${var.namespace}"
name = "${var.name}"
stage = "${var.stage}"
Expand Down Expand Up @@ -55,7 +55,7 @@ resource "aws_security_group" "default" {
}

module "dns" {
source = "git::https://github.com/cloudposse/tf_hostname.git?ref=tags/0.1.0"
source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.1.1"
namespace = "${var.namespace}"
name = "${var.name}"
stage = "${var.stage}"
Expand Down

0 comments on commit 45ed03b

Please sign in to comment.