Skip to content

Latest commit

 

History

History
92 lines (70 loc) · 1.38 KB

bigip_do.md

File metadata and controls

92 lines (70 loc) · 1.38 KB

bigip_do

back

Index

Terraform

terraform {
  required_providers {
    bigip = ">= 1.8.0"
  }
}

top

Example Usage

module "bigip_do" {
  source = "./modules/bigip/r/bigip_do"

  # do_json - (required) is a type of string
  do_json = null
  # tenant_name - (optional) is a type of string
  tenant_name = null
  # timeout - (optional) is a type of number
  timeout = null
}

top

Variables

variable "do_json" {
  description = "(required) - DO json"
  type        = string
}

variable "tenant_name" {
  description = "(optional) - unique identifier for DO resource"
  type        = string
  default     = null
}

variable "timeout" {
  description = "(optional) - DO json"
  type        = number
  default     = null
}

top

Resource

resource "bigip_do" "this" {
  # do_json - (required) is a type of string
  do_json = var.do_json
  # tenant_name - (optional) is a type of string
  tenant_name = var.tenant_name
  # timeout - (optional) is a type of number
  timeout = var.timeout
}

top

Outputs

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

output "this" {
  value = bigip_do.this
}

top