-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
target_vault_name reference a resource not a variable (#2)
* Add depends on to fix the occasional race condition * Add changelog * Use resource and not variable for 'depends_on' * Add comment for depends_on * Fix target_vault_name should be referencing a resource and not a variable * Remove unreleased part for Changelog * Fix expression for target_vault_name * New expression for target_vault_name
- Loading branch information
Abdul Wahid
authored
Nov 13, 2020
1 parent
fd12929
commit 57af399
Showing
4 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
<a name="1.0.0"></a> | ||
## 1.0.0 - 2020-11-09 | ||
|
||
- Complete AWS Backup module ([#1](https://github.com/umotif-public/terraform-aws-backup/issues/1)) | ||
- Initial commit | ||
|
||
|
||
[Unreleased]: https://github.com/umotif-public/terraform-aws-backup/compare/1.0.0...HEAD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,4 +106,6 @@ module "backup" { | |
tags = { | ||
Environment = "test" | ||
} | ||
} | ||
|
||
depends_on = [aws_backup_vault.external_vault] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters