Skip to content

Latest commit

 

History

History
64 lines (44 loc) · 816 Bytes

checkpoint_management_discard.md

File metadata and controls

64 lines (44 loc) · 816 Bytes

checkpoint_management_discard

back

Index

Terraform

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

top

Example Usage

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

}

top

Variables

top

Resource

resource "checkpoint_management_discard" "this" {
}

top

Outputs

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

output "this" {
  value = checkpoint_management_discard.this
}

top