Skip to content

Latest commit

 

History

History
98 lines (74 loc) · 1.63 KB

File metadata and controls

98 lines (74 loc) · 1.63 KB

google_composer_image_versions

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

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

top

Datasource

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

top

Outputs

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

output "image_versions" {
  description = "returns a list of object"
  value       = data.google_composer_image_versions.this.image_versions
}

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

output "region" {
  description = "returns a string"
  value       = data.google_composer_image_versions.this.region
}

output "this" {
  value = google_composer_image_versions.this
}

top