Skip to content

Latest commit

 

History

History
154 lines (116 loc) · 3.14 KB

File metadata and controls

154 lines (116 loc) · 3.14 KB

fortios_system_resourcelimits

back

Index

Terraform

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

top

Example Usage

module "fortios_system_resourcelimits" {
  source = "./modules/fortios/d/fortios_system_resourcelimits"

}

top

Variables

top

Datasource

data "fortios_system_resourcelimits" "this" {
}

top

Outputs

output "custom_service" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.custom_service
}

output "dialup_tunnel" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.dialup_tunnel
}

output "firewall_address" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.firewall_address
}

output "firewall_addrgrp" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.firewall_addrgrp
}

output "firewall_policy" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.firewall_policy
}

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

output "ipsec_phase1" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.ipsec_phase1
}

output "ipsec_phase1_interface" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.ipsec_phase1_interface
}

output "ipsec_phase2" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.ipsec_phase2
}

output "ipsec_phase2_interface" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.ipsec_phase2_interface
}

output "log_disk_quota" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.log_disk_quota
}

output "onetime_schedule" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.onetime_schedule
}

output "proxy" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.proxy
}

output "recurring_schedule" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.recurring_schedule
}

output "service_group" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.service_group
}

output "session" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.session
}

output "sslvpn" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.sslvpn
}

output "user" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.user
}

output "user_group" {
  description = "returns a number"
  value       = data.fortios_system_resourcelimits.this.user_group
}

output "this" {
  value = fortios_system_resourcelimits.this
}

top