Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 1.24 KB

checkpoint_management_verify_policy.md

File metadata and controls

77 lines (56 loc) · 1.24 KB

checkpoint_management_verify_policy

back

Index

Terraform

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

top

Example Usage

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

  # policy_package - (required) is a type of string
  policy_package = null
}

top

Variables

variable "policy_package" {
  description = "(required) - Policy package identified by the name or UID."
  type        = string
}

top

Resource

resource "checkpoint_management_verify_policy" "this" {
  # policy_package - (required) is a type of string
  policy_package = var.policy_package
}

top

Outputs

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

output "task_id" {
  description = "returns a string"
  value       = checkpoint_management_verify_policy.this.task_id
}

output "this" {
  value = checkpoint_management_verify_policy.this
}

top