Skip to content

Latest commit

 

History

History
108 lines (82 loc) · 2 KB

checkpoint_management_data_service_group.md

File metadata and controls

108 lines (82 loc) · 2 KB

checkpoint_management_data_service_group

back

Index

Terraform

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

top

Example Usage

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

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

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

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

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

output "members" {
  description = "returns a set of string"
  value       = data.checkpoint_management_data_service_group.this.members
}

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

output "this" {
  value = checkpoint_management_data_service_group.this
}

top