Skip to content

Latest commit

 

History

History
93 lines (70 loc) · 1.43 KB

fortios_logmemory_setting.md

File metadata and controls

93 lines (70 loc) · 1.43 KB

fortios_logmemory_setting

back

Index

Terraform

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

top

Example Usage

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

  # diskfull - (optional) is a type of string
  diskfull = null
  # status - (optional) is a type of string
  status = null
}

top

Variables

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

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

top

Resource

resource "fortios_logmemory_setting" "this" {
  # diskfull - (optional) is a type of string
  diskfull = var.diskfull
  # status - (optional) is a type of string
  status = var.status
}

top

Outputs

output "diskfull" {
  description = "returns a string"
  value       = fortios_logmemory_setting.this.diskfull
}

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

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

output "this" {
  value = fortios_logmemory_setting.this
}

top