Skip to content

Latest commit

 

History

History
118 lines (90 loc) · 2.3 KB

checkpoint_management_data_service_icmp6.md

File metadata and controls

118 lines (90 loc) · 2.3 KB

checkpoint_management_data_service_icmp6

back

Index

Terraform

terraform {
  required_providers {
    checkpoint = ">= 1.4.0"
  }
}

top

Example Usage

module "checkpoint_management_data_service_icmp6" {
  source = "./modules/checkpoint/d/checkpoint_management_data_service_icmp6"

  # name - (optional) is a type of string
  name = null
  # uid - (optional) is a type of string
  uid = null
}

top

Variables

variable "name" {
  description = "(optional) - Object name."
  type        = string
  default     = null
}

variable "uid" {
  description = "(optional) - Object unique identifier."
  type        = string
  default     = null
}

top

Datasource

data "checkpoint_management_data_service_icmp6" "this" {
  # name - (optional) is a type of string
  name = var.name
  # uid - (optional) is a type of string
  uid = var.uid
}

top

Outputs

output "color" {
  description = "returns a string"
  value       = data.checkpoint_management_data_service_icmp6.this.color
}

output "comments" {
  description = "returns a string"
  value       = data.checkpoint_management_data_service_icmp6.this.comments
}

output "groups" {
  description = "returns a set of string"
  value       = data.checkpoint_management_data_service_icmp6.this.groups
}

output "icmp_code" {
  description = "returns a number"
  value       = data.checkpoint_management_data_service_icmp6.this.icmp_code
}

output "icmp_type" {
  description = "returns a number"
  value       = data.checkpoint_management_data_service_icmp6.this.icmp_type
}

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

output "keep_connections_open_after_policy_installation" {
  description = "returns a bool"
  value       = data.checkpoint_management_data_service_icmp6.this.keep_connections_open_after_policy_installation
}

output "tags" {
  description = "returns a set of string"
  value       = data.checkpoint_management_data_service_icmp6.this.tags
}

output "this" {
  value = checkpoint_management_data_service_icmp6.this
}

top