outputs.tf 459 B

1234567891011121314
  1. output "sa_ids" {
  2. description = "List IDs of created service accounts"
  3. value = [for v in yandex_iam_service_account.sa : v.id]
  4. }
  5. output "sa_names" {
  6. description = "List Names of created service accounts"
  7. value = [for v in yandex_iam_service_account.sa : v.name]
  8. }
  9. output "sa_object" {
  10. description = "Map with service accounts info , key = service account name"
  11. value = { for v in yandex_iam_service_account.sa : v.name => v }
  12. }