Skip to content

Latest commit

 

History

History
84 lines (60 loc) · 1.25 KB

fortios_system_fipscc.md

File metadata and controls

84 lines (60 loc) · 1.25 KB

fortios_system_fipscc

back

Index

Terraform

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

top

Example Usage

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

}

top

Variables

top

Datasource

data "fortios_system_fipscc" "this" {
}

top

Outputs

output "entropy_token" {
  description = "returns a string"
  value       = data.fortios_system_fipscc.this.entropy_token
}

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

output "key_generation_self_test" {
  description = "returns a string"
  value       = data.fortios_system_fipscc.this.key_generation_self_test
}

output "self_test_period" {
  description = "returns a number"
  value       = data.fortios_system_fipscc.this.self_test_period
}

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

output "this" {
  value = fortios_system_fipscc.this
}

top