Skip to content

Latest commit

 

History

History
81 lines (60 loc) · 1.19 KB

File metadata and controls

81 lines (60 loc) · 1.19 KB

ciscoasa_network_object_group

back

Index

Terraform

terraform {
  required_providers {
    ciscoasa = ">= 1.2.0"
  }
}

top

Example Usage

module "ciscoasa_network_object_group" {
  source = "./modules/ciscoasa/r/ciscoasa_network_object_group"

  # members - (required) is a type of set of string
  members = []
  # name - (required) is a type of string
  name = null
}

top

Variables

variable "members" {
  description = "(required)"
  type        = set(string)
}

variable "name" {
  description = "(required)"
  type        = string
}

top

Resource

resource "ciscoasa_network_object_group" "this" {
  # members - (required) is a type of set of string
  members = var.members
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

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

output "this" {
  value = ciscoasa_network_object_group.this
}

top