Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 876 Bytes

fortios_router_bfd6.md

File metadata and controls

69 lines (48 loc) · 876 Bytes

fortios_router_bfd6

back

Index

Terraform

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

top

Example Usage

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

}

top

Variables

top

Datasource

data "fortios_router_bfd6" "this" {
}

top

Outputs

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

output "neighbor" {
  description = "returns a list of object"
  value       = data.fortios_router_bfd6.this.neighbor
}

output "this" {
  value = fortios_router_bfd6.this
}

top