-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(rds): fix sub module no instance id specified and account name sp…
…ecified error.
- Loading branch information
Showing
11 changed files
with
47 additions
and
41 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,9 @@ | ||
## 1.2.0 (December 3, 2019) | ||
|
||
IMPROVEMENTS: | ||
|
||
- imporve(rds): update the module to the format of the new version. ([GH-6](https://github.com/terraform-alicloud-modules/terraform-alicloud-rds/pull/6)) | ||
|
||
BUG FIXES: | ||
|
||
- fix(rds): fix sub module no instance id specified and account name specified error. ([GH-7](https://github.com/terraform-alicloud-modules/terraform-alicloud-rds/pull/7)) |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
locals { | ||
this_db_instance_databese_id = alicloud_db_database.this_db_database.*.id | ||
this_db_instance_databese_name = alicloud_db_database.this_db_database.*.name | ||
this_db_instance_database_id = alicloud_db_database.this_db_database.*.id | ||
this_db_instance_database_name = alicloud_db_database.this_db_database.*.name | ||
} | ||
|
||
output "this_db_instance_databese_id" { | ||
value = local.this_db_instance_databese_id | ||
output "this_db_instance_database_id" { | ||
value = local.this_db_instance_database_id | ||
} | ||
|
||
output "this_db_instance_databese_name" { | ||
value = local.this_db_instance_databese_name | ||
output "this_db_instance_database_name" { | ||
value = local.this_db_instance_database_name | ||
} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
locals { | ||
this_db_instance_databese_account = alicloud_db_account_privilege.this_db_database_privilege.*.account_name | ||
this_db_instance_databese_accountprivilege = alicloud_db_account_privilege.this_db_database_privilege.*.privilege | ||
this_db_instance_database_account = alicloud_db_account_privilege.this_db_database_privilege.*.account_name | ||
this_db_instance_database_accountprivilege = alicloud_db_account_privilege.this_db_database_privilege.*.privilege | ||
} | ||
|
||
output "this_db_instance_databese_account" { | ||
value = local.this_db_instance_databese_account | ||
output "this_db_instance_database_account" { | ||
value = local.this_db_instance_database_account | ||
} | ||
|
||
output "this_db_instance_databese_accountprivilege" { | ||
value = local.this_db_instance_databese_accountprivilege | ||
output "this_db_instance_database_accountprivilege" { | ||
value = local.this_db_instance_database_accountprivilege | ||
} | ||
|
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