Skip to content

Latest commit

 

History

History
84 lines (60 loc) · 1.25 KB

fortios_system_vdomsflow.md

File metadata and controls

84 lines (60 loc) · 1.25 KB

fortios_system_vdomsflow

back

Index

Terraform

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

top

Example Usage

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

}

top

Variables

top

Datasource

data "fortios_system_vdomsflow" "this" {
}

top

Outputs

output "collector_ip" {
  description = "returns a string"
  value       = data.fortios_system_vdomsflow.this.collector_ip
}

output "collector_port" {
  description = "returns a number"
  value       = data.fortios_system_vdomsflow.this.collector_port
}

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

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

output "vdom_sflow" {
  description = "returns a string"
  value       = data.fortios_system_vdomsflow.this.vdom_sflow
}

output "this" {
  value = fortios_system_vdomsflow.this
}

top