Skip to content

Latest commit

 

History

History
83 lines (61 loc) · 1.25 KB

File metadata and controls

83 lines (61 loc) · 1.25 KB

google_cloud_run_locations

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

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

output "locations" {
  description = "returns a list of string"
  value       = data.google_cloud_run_locations.this.locations
}

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

output "this" {
  value = google_cloud_run_locations.this
}

top