Supply count for map_accounts, map_roles and map_users (#205)

* Added map_roles_count and user_roles_count (#1)

* Update readme for new vars

* updated tests to include count

* fix syntax error

* updated changelog

* Added map_accounts_count variable for consistency

* Fix counts in example and user latest terraform-docs to generate readme
This commit is contained in:
Diego Rodriguez
2018-12-13 06:50:46 -08:00
committed by Max Williams
parent 37f18c17c9
commit 1822a677dc
6 changed files with 60 additions and 17 deletions

View File

@@ -136,6 +136,9 @@ module "eks" {
worker_group_count = "2"
worker_additional_security_group_ids = ["${aws_security_group.all_worker_mgmt.id}"]
map_roles = "${var.map_roles}"
map_roles_count = "${var.map_roles_count}"
map_users = "${var.map_users}"
map_users_count = "${var.map_users_count}"
map_accounts = "${var.map_accounts}"
map_accounts_count = "${var.map_accounts_count}"
}