Skip to content

Latest commit

 

History

History
93 lines (70 loc) · 1.6 KB

File metadata and controls

93 lines (70 loc) · 1.6 KB

google_storage_project_service_account

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

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

top

Datasource

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

top

Outputs

output "email_address" {
  description = "returns a string"
  value       = data.google_storage_project_service_account.this.email_address
}

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

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

output "this" {
  value = google_storage_project_service_account.this
}

top