Skip to content

Latest commit

 

History

History
122 lines (95 loc) · 1.99 KB

fortios_certificate_remote.md

File metadata and controls

122 lines (95 loc) · 1.99 KB

fortios_certificate_remote

back

Index

Terraform

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

top

Example Usage

module "fortios_certificate_remote" {
  source = null

  # name - (optional) is a type of string
  name = null
  # range - (optional) is a type of string
  range = null
  # remote - (optional) is a type of string
  remote = null
  # source - (optional) is a type of string
}

top

Variables

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

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

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

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

top

Resource

resource "fortios_certificate_remote" "this" {
  # name - (optional) is a type of string
  name = var.name
  # range - (optional) is a type of string
  range = var.range
  # remote - (optional) is a type of string
  remote = var.remote
  # source - (optional) is a type of string
  source = var.source
}

top

Outputs

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

output "name" {
  description = "returns a string"
  value       = fortios_certificate_remote.this.name
}

output "range" {
  description = "returns a string"
  value       = fortios_certificate_remote.this.range
}

output "remote" {
  description = "returns a string"
  value       = fortios_certificate_remote.this.remote
}

output "source" {
  description = "returns a string"
  value       = fortios_certificate_remote.this.source
}

output "this" {
  value = fortios_certificate_remote.this
}

top