Skip to content

Latest commit

 

History

History
88 lines (66 loc) · 1.52 KB

checkpoint_management_ha_full_sync.md

File metadata and controls

88 lines (66 loc) · 1.52 KB

checkpoint_management_ha_full_sync

back

Index

Terraform

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

top

Example Usage

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

  # name - (optional) is a type of string
  name = null
  # uid - (optional) is a type of string
  uid = null
}

top

Variables

variable "name" {
  description = "(optional) - Peer name (Multi Domain Server, Domain Server or Security Management Server)."
  type        = string
  default     = null
}

variable "uid" {
  description = "(optional) - Peer unique identifier (Multi Domain Server, Domain Server or Security Management Server)."
  type        = string
  default     = null
}

top

Resource

resource "checkpoint_management_ha_full_sync" "this" {
  # name - (optional) is a type of string
  name = var.name
  # uid - (optional) is a type of string
  uid = var.uid
}

top

Outputs

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

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

output "this" {
  value = checkpoint_management_ha_full_sync.this
}

top