Skip to content

Latest commit

 

History

History
98 lines (73 loc) · 1.75 KB

File metadata and controls

98 lines (73 loc) · 1.75 KB

google_app_engine_default_service_account

back

Index

Terraform

terraform {
  required_providers {
    google-beta = ">= 3.63.0"
  }
}

top

Example Usage

module "google_app_engine_default_service_account" {
  source = "./modules/google-beta/d/google_app_engine_default_service_account"

  # project - (optional) is a type of string
  project = null
}

top

Variables

variable "project" {
  description = "(optional)"
  type        = string
  default     = null
}

top

Datasource

data "google_app_engine_default_service_account" "this" {
  # project - (optional) is a type of string
  project = var.project
}

top

Outputs

output "display_name" {
  description = "returns a string"
  value       = data.google_app_engine_default_service_account.this.display_name
}

output "email" {
  description = "returns a string"
  value       = data.google_app_engine_default_service_account.this.email
}

output "id" {
  description = "returns a string"
  value       = data.google_app_engine_default_service_account.this.id
}

output "name" {
  description = "returns a string"
  value       = data.google_app_engine_default_service_account.this.name
}

output "project" {
  description = "returns a string"
  value       = data.google_app_engine_default_service_account.this.project
}

output "unique_id" {
  description = "returns a string"
  value       = data.google_app_engine_default_service_account.this.unique_id
}

output "this" {
  value = google_app_engine_default_service_account.this
}

top