Skip to content

Commit

Permalink
Merge pull request #2 from lgallard/fix/rename-module-references
Browse files Browse the repository at this point in the history
Rename module references
  • Loading branch information
lgallard authored Oct 18, 2019
2 parents 4b600a7 + 1675df7 commit 387b632
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.1.2 (October 18, 2019)

UPDATE:

* Rename module references in README and examples

## 0.1.1 (October 18, 2019)

FEATURES:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tf-aws-backup
# terraform-aws-backup

Terraform module to create [AWS Backup](https://aws.amazon.com/backup/) plans. AWS Backup is a fully managed backup service that makes it easy to centralize and automate the back up of data across AWS services (EBS volumes, RDS databases, DynamoDB tables, EFS file systems, and Storage Gateway volumes).

Expand All @@ -17,7 +17,7 @@ The first selection has two assignments, the first defined by a resource ARN and
```
module "aws_backup_example" {
source = "../modules/tf-aws-backup"
source = "../modules/terraform-aws-backup"
# Vault
vault_name = "vault-3"
Expand Down Expand Up @@ -170,4 +170,4 @@ I faced this when applying and destroying the same plan several times, for insta

**Workaround:**

I couldn't find any workaround for this. Just destroy all wait some time and apply again.
I couldn't find any workaround for this. Just destroy all wait some time and apply again.
2 changes: 1 addition & 1 deletion examples/complete_plan/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "aws_backup_example" {

source = "../modules/tf-aws-backup"
source = "../modules/terraform-aws-backup"

# Vault
vault_name = "vault-3"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_plan_using_lists/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "aws_backup_example" {

source = "../modulesi/tf-aws-backup"
source = "../modulesi/terraform-aws-backup"

# Vault
vault_name = "vault-1"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_plan_using_variables/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "aws_backup_example" {

source = "../modules/tf-aws-backup"
source = "../modules/terraform-aws-backup"

# Vault
vault_name = "vault-0"
Expand Down

0 comments on commit 387b632

Please sign in to comment.