Skip to content

Latest commit

 

History

History
103 lines (78 loc) · 1.81 KB

checkpoint_management_data_dns_domain.md

File metadata and controls

103 lines (78 loc) · 1.81 KB

checkpoint_management_data_dns_domain

back

Index

Terraform

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

top

Example Usage

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

  # 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_dns_domain" "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_dns_domain.this.color
}

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

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

output "is_sub_domain" {
  description = "returns a bool"
  value       = data.checkpoint_management_data_dns_domain.this.is_sub_domain
}

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

output "this" {
  value = checkpoint_management_data_dns_domain.this
}

top