back
terraform {
required_providers {
fortios = ">= 1.11.0"
}
}
top
module "fortios_system_fipscc" {
source = "./modules/fortios/d/fortios_system_fipscc"
}
top
top
data "fortios_system_fipscc" "this" {
}
top
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