This repository has been archived by the owner on Dec 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from gruntwork-io/tf12
Update to support terraform 0.12
- Loading branch information
Showing
31 changed files
with
715 additions
and
571 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
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,24 +1,24 @@ | ||
output "name" { | ||
description = "Name of the created namespace" | ||
value = "${module.namespace.name}" | ||
value = module.namespace.name | ||
} | ||
|
||
output "rbac_access_all_role" { | ||
description = "The name of the RBAC role that grants admin level permissions on the namespace." | ||
value = "${module.namespace.rbac_access_all_role}" | ||
value = module.namespace.rbac_access_all_role | ||
} | ||
|
||
output "rbac_access_read_only_role" { | ||
description = "The name of the RBAC role that grants read only permissions on the namespace." | ||
value = "${module.namespace.rbac_access_read_only_role}" | ||
value = module.namespace.rbac_access_read_only_role | ||
} | ||
|
||
output "service_account_access_all" { | ||
description = "The name of the ServiceAccount that has admin level permissions." | ||
value = "${module.service_account_access_all.name}" | ||
value = module.service_account_access_all.name | ||
} | ||
|
||
output "service_account_access_read_only" { | ||
description = "The name of the ServiceAccount that has read only level permissions." | ||
value = "${module.service_account_access_read_only.name}" | ||
value = module.service_account_access_read_only.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
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,9 +1,9 @@ | ||
output "tiller_namespace" { | ||
description = "The name of the namespace that houses Tiller." | ||
value = "${module.tiller_namespace.name}" | ||
value = module.tiller_namespace.name | ||
} | ||
|
||
output "resource_namespace" { | ||
description = "The name of the namespace where Tiller will deploy resources into." | ||
value = "${module.resource_namespace.name}" | ||
value = module.resource_namespace.name | ||
} |
Oops, something went wrong.