Skip to content

Latest commit

 

History

History
150 lines (118 loc) · 2.59 KB

azurerm_image.md

File metadata and controls

150 lines (118 loc) · 2.59 KB

azurerm_image

back

Index

Terraform

terraform {
  required_providers {
    azurerm = ">= 2.54.0"
  }
}

top

Example Usage

module "azurerm_image" {
  source = "./modules/azurerm/d/azurerm_image"

  # name - (optional) is a type of string
  name = null
  # name_regex - (optional) is a type of string
  name_regex = null
  # resource_group_name - (required) is a type of string
  resource_group_name = null
  # sort_descending - (optional) is a type of bool
  sort_descending = null

  timeouts = [{
    read = null
  }]
}

top

Variables

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

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

variable "resource_group_name" {
  description = "(required)"
  type        = string
}

variable "sort_descending" {
  description = "(optional)"
  type        = bool
  default     = null
}

variable "timeouts" {
  description = "nested block: NestingSingle, min items: 0, max items: 0"
  type = set(object(
    {
      read = string
    }
  ))
  default = []
}

top

Datasource

data "azurerm_image" "this" {
  # name - (optional) is a type of string
  name = var.name
  # name_regex - (optional) is a type of string
  name_regex = var.name_regex
  # resource_group_name - (required) is a type of string
  resource_group_name = var.resource_group_name
  # sort_descending - (optional) is a type of bool
  sort_descending = var.sort_descending

  dynamic "timeouts" {
    for_each = var.timeouts
    content {
      # read - (optional) is a type of string
      read = timeouts.value["read"]
    }
  }

}

top

Outputs

output "data_disk" {
  description = "returns a list of object"
  value       = data.azurerm_image.this.data_disk
}

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

output "location" {
  description = "returns a string"
  value       = data.azurerm_image.this.location
}

output "os_disk" {
  description = "returns a list of object"
  value       = data.azurerm_image.this.os_disk
}

output "tags" {
  description = "returns a map of string"
  value       = data.azurerm_image.this.tags
}

output "zone_resilient" {
  description = "returns a bool"
  value       = data.azurerm_image.this.zone_resilient
}

output "this" {
  value = azurerm_image.this
}

top