Skip to content

Latest commit

 

History

History
81 lines (60 loc) · 1.11 KB

bigip_ltm_irule.md

File metadata and controls

81 lines (60 loc) · 1.11 KB

bigip_ltm_irule

back

Index

Terraform

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

top

Example Usage

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

  # irule - (required) is a type of string
  irule = null
  # name - (required) is a type of string
  name = null
}

top

Variables

variable "irule" {
  description = "(required) - The iRule body"
  type        = string
}

variable "name" {
  description = "(required) - Name of the iRule"
  type        = string
}

top

Resource

resource "bigip_ltm_irule" "this" {
  # irule - (required) is a type of string
  irule = var.irule
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

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

output "this" {
  value = bigip_ltm_irule.this
}

top