User Tools

Site Tools


terraform:terraform-console

Terraform Console

variable "cidr_blocks" {
  description = "CIDR blocks"
  type = list(string)
  default = [
    "192.168.100.1/24",
    "192.168.100.2/24",
    "192.168.100.3/24",
  ]
}
$ terraform console
> var.cidr_blocks
tolist([
  "192.168.100.1/24",
  "192.168.100.2/24",
  "192.168.100.3/24",                                                                                                                      >
> exit
$
terraform/terraform-console.txt · Last modified: by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki