Skip to content

Commit

Permalink
Merge pull request #4 from castai/add-service-account-output
Browse files Browse the repository at this point in the history
Added service_account_id and service_account_email to the module output
  • Loading branch information
andrejatcastai authored Jun 19, 2023
2 parents 083f296 + 8fbb7ff commit 8a7cbef
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,11 @@ output "private_key" {
google_project_iam_custom_role.castai_role
]
}

output "service_account_id" {
value = google_service_account.castai_service_account.account_id
}

output "service_account_email" {
value = google_service_account.castai_service_account.email
}

0 comments on commit 8a7cbef

Please sign in to comment.