Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 1.06 KB

fortios_router_keychain.md

File metadata and controls

77 lines (56 loc) · 1.06 KB

fortios_router_keychain

back

Index

Terraform

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

top

Example Usage

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

  # name - (required) is a type of string
  name = null
}

top

Variables

variable "name" {
  description = "(required)"
  type        = string
}

top

Datasource

data "fortios_router_keychain" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

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

output "key" {
  description = "returns a list of object"
  value       = data.fortios_router_keychain.this.key
}

output "this" {
  value = fortios_router_keychain.this
}

top