Skip to content

Latest commit

 

History

History
86 lines (64 loc) · 1.25 KB

bigip_ltm_irule.md

File metadata and controls

86 lines (64 loc) · 1.25 KB

bigip_ltm_irule

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

variable "partition" {
  description = "(required) - partition of resource group"
  type        = string
}

top

Datasource

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

top

Outputs

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

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

output "this" {
  value = bigip_ltm_irule.this
}

top