diff --git a/terraform/modules/iam/outputs.tf b/terraform/modules/iam/outputs.tf index 91f33d3..622d91c 100644 --- a/terraform/modules/iam/outputs.tf +++ b/terraform/modules/iam/outputs.tf @@ -1,10 +1,10 @@ output "service_account_email"{ description = "Service account email" - value = google.service.account.myaccount.email + value = google_service_account.myaccount.email } output "service_account_key"{ description = "Service key" sensitive = true - value = google.service.account.mykey.private_key + value = google_service_account_key.mykey.private_key } \ No newline at end of file