Skip to content

Latest commit

 

History

History
108 lines (82 loc) · 2.05 KB

checkpoint_management_data_threat_indicator.md

File metadata and controls

108 lines (82 loc) · 2.05 KB

checkpoint_management_data_threat_indicator

back

Index

Terraform

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

top

Example Usage

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

  # 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. Should be unique in the domain."
  type        = string
  default     = null
}

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

top

Datasource

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

top

Outputs

output "action" {
  description = "returns a string"
  value       = data.checkpoint_management_data_threat_indicator.this.action
}

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

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

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

output "profile_overrides" {
  description = "returns a list of object"
  value       = data.checkpoint_management_data_threat_indicator.this.profile_overrides
}

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

output "this" {
  value = checkpoint_management_data_threat_indicator.this
}

top