back
terraform {
required_providers {
ciscoasa = ">= 1.2.0"
}
}
top
module "ciscoasa_network_object" {
source = "./modules/ciscoasa/r/ciscoasa_network_object"
# name - (required) is a type of string
name = null
# value - (required) is a type of string
value = null
}
top
variable "name" {
description = "(required)"
type = string
}
variable "value" {
description = "(required)"
type = string
}
top
resource "ciscoasa_network_object" "this" {
# name - (required) is a type of string
name = var.name
# value - (required) is a type of string
value = var.value
}
top
output "id" {
description = "returns a string"
value = ciscoasa_network_object.this.id
}
output "this" {
value = ciscoasa_network_object.this
}
top