Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 826 Bytes

nomad_regions.md

File metadata and controls

69 lines (48 loc) · 826 Bytes

nomad_regions

back

Index

Terraform

terraform {
  required_providers {
    nomad = ">= 1.4.14"
  }
}

top

Example Usage

module "nomad_regions" {
  source = "./modules/nomad/d/nomad_regions"

}

top

Variables

top

Datasource

data "nomad_regions" "this" {
}

top

Outputs

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

output "regions" {
  description = "returns a list of string"
  value       = data.nomad_regions.this.regions
}

output "this" {
  value = nomad_regions.this
}

top