Skip to content

Latest commit

 

History

History
73 lines (53 loc) · 1.08 KB

checkpoint_management_disconnect.md

File metadata and controls

73 lines (53 loc) · 1.08 KB

checkpoint_management_disconnect

back

Index

Terraform

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

top

Example Usage

module "checkpoint_management_disconnect" {
  source = "./modules/checkpoint/r/checkpoint_management_disconnect"

  # discard - (optional) is a type of bool
  discard = null
}

top

Variables

variable "discard" {
  description = "(optional) - Discard all changes committed during the session."
  type        = bool
  default     = null
}

top

Resource

resource "checkpoint_management_disconnect" "this" {
  # discard - (optional) is a type of bool
  discard = var.discard
}

top

Outputs

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

output "this" {
  value = checkpoint_management_disconnect.this
}

top