add links to factories doc (#2134)

This commit is contained in:
Ludovico Magnocavallo
2024-03-06 08:25:43 +01:00
committed by GitHub
parent 39139e2fa1
commit e12cf83188
4 changed files with 97 additions and 32 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
output "custom_role_ids" {
output "custom_role_id" {
description = "Map of custom role IDs created in the project."
value = {
for k, v in google_project_iam_custom_role.roles :
@@ -24,6 +24,11 @@ output "custom_role_ids" {
}
}
output "custom_roles" {
description = "Map of custom roles resources created in the project."
value = google_project_iam_custom_role.roles
}
output "id" {
description = "Project id."
value = "${local.prefix}${var.name}"