Skip to content

Commit 623c4a4

Browse files
authored
Merge pull request #32 from lgallard/fix/master_user_name
Fix master_user_name
2 parents 6793b3b + a51046d commit 623c4a4

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.7.1 (January 24, 2021)
2+
3+
FIXES:
4+
5+
* Fix `master_user_name` reference in locals (thanks @rafaelmariotti)
6+
17
## 0.7.0 (January 8, 2021)
28

39
ENHANCEMENTS:

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ module "aws_es" {
9696
}
9797
9898
```
99-
10099
## Requirements
101100

102101
| Name | Version |

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ locals {
148148
# Create subblock master_user_options
149149
master_user_options = lookup(var.advanced_security_options, "master_user_options", null) != null ? lookup(var.advanced_security_options, "master_user_options") : {
150150
master_user_arn = var.advanced_security_options_internal_user_database_enabled == false ? var.advanced_security_options_master_user_arn : null
151-
master_user_username = var.advanced_security_options_internal_user_database_enabled == true ? var.advanced_security_options_master_user_username : null
151+
master_user_name = var.advanced_security_options_internal_user_database_enabled == true ? var.advanced_security_options_master_user_username : null
152152
master_user_password = var.advanced_security_options_internal_user_database_enabled == true ? var.advanced_security_options_master_user_password : null
153153
}
154154

0 commit comments

Comments
 (0)