add tfvars output

This commit is contained in:
Ludovico Magnocavallo 2022-02-16 00:35:44 +01:00
parent 369253cc3a
commit 742a08ba17
1 changed files with 11 additions and 0 deletions

View File

@ -81,3 +81,14 @@ output "providers" {
sensitive = true
value = local.providers
}
# ready to use variable values for subsequent stages
output "tfvars" {
description = "Terraform variable files for the following stages."
sensitive = true
value = {
automation_project_id = module.automation-project.project_id
custom_roles = local.custom_roles
}
}