Skip to content

Latest commit

 

History

History
198 lines (161 loc) · 4.09 KB

fortios_system_fortisandbox.md

File metadata and controls

198 lines (161 loc) · 4.09 KB

fortios_system_fortisandbox

back

Index

Terraform

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

top

Example Usage

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

  # email - (optional) is a type of string
  email = null
  # enc_algorithm - (optional) is a type of string
  enc_algorithm = null
  # forticloud - (optional) is a type of string
  forticloud = null
  # interface - (optional) is a type of string
  interface = null
  # interface_select_method - (optional) is a type of string
  interface_select_method = null
  # server - (optional) is a type of string
  server = null
  # source_ip - (optional) is a type of string
  source_ip = null
  # ssl_min_proto_version - (optional) is a type of string
  ssl_min_proto_version = null
  # status - (optional) is a type of string
  status = null
}

top

Variables

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

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

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

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

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

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

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

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

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

top

Resource

resource "fortios_system_fortisandbox" "this" {
  # email - (optional) is a type of string
  email = var.email
  # enc_algorithm - (optional) is a type of string
  enc_algorithm = var.enc_algorithm
  # forticloud - (optional) is a type of string
  forticloud = var.forticloud
  # interface - (optional) is a type of string
  interface = var.interface
  # interface_select_method - (optional) is a type of string
  interface_select_method = var.interface_select_method
  # server - (optional) is a type of string
  server = var.server
  # source_ip - (optional) is a type of string
  source_ip = var.source_ip
  # ssl_min_proto_version - (optional) is a type of string
  ssl_min_proto_version = var.ssl_min_proto_version
  # status - (optional) is a type of string
  status = var.status
}

top

Outputs

output "email" {
  description = "returns a string"
  value       = fortios_system_fortisandbox.this.email
}

output "enc_algorithm" {
  description = "returns a string"
  value       = fortios_system_fortisandbox.this.enc_algorithm
}

output "forticloud" {
  description = "returns a string"
  value       = fortios_system_fortisandbox.this.forticloud
}

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

output "interface" {
  description = "returns a string"
  value       = fortios_system_fortisandbox.this.interface
}

output "interface_select_method" {
  description = "returns a string"
  value       = fortios_system_fortisandbox.this.interface_select_method
}

output "server" {
  description = "returns a string"
  value       = fortios_system_fortisandbox.this.server
}

output "source_ip" {
  description = "returns a string"
  value       = fortios_system_fortisandbox.this.source_ip
}

output "ssl_min_proto_version" {
  description = "returns a string"
  value       = fortios_system_fortisandbox.this.ssl_min_proto_version
}

output "status" {
  description = "returns a string"
  value       = fortios_system_fortisandbox.this.status
}

output "this" {
  value = fortios_system_fortisandbox.this
}

top