Skip to content

Latest commit

 

History

History
87 lines (65 loc) · 1.49 KB

File metadata and controls

87 lines (65 loc) · 1.49 KB

fortios_endpointcontrol_forticlientregistrationsync

back

Index

Terraform

terraform {
  required_providers {
    fortios = ">= 1.11.0"
  }
}

top

Example Usage

module "fortios_endpointcontrol_forticlientregistrationsync" {
  source = "./modules/fortios/r/fortios_endpointcontrol_forticlientregistrationsync"

  # peer_ip - (required) is a type of string
  peer_ip = null
  # peer_name - (optional) is a type of string
  peer_name = null
}

top

Variables

variable "peer_ip" {
  description = "(required)"
  type        = string
}

variable "peer_name" {
  description = "(optional)"
  type        = string
  default     = null
}

top

Resource

resource "fortios_endpointcontrol_forticlientregistrationsync" "this" {
  # peer_ip - (required) is a type of string
  peer_ip = var.peer_ip
  # peer_name - (optional) is a type of string
  peer_name = var.peer_name
}

top

Outputs

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

output "peer_name" {
  description = "returns a string"
  value       = fortios_endpointcontrol_forticlientregistrationsync.this.peer_name
}

output "this" {
  value = fortios_endpointcontrol_forticlientregistrationsync.this
}

top