fortios_systemautoupdate_schedule back Index Example Usage Variables Datasource Outputs Terraform terraform { required_providers { fortios = ">= 1.11.0" } } top Example Usage module "fortios_systemautoupdate_schedule" { source = "./modules/fortios/d/fortios_systemautoupdate_schedule" } top Variables top Datasource data "fortios_systemautoupdate_schedule" "this" { } top Outputs output "day" { description = "returns a string" value = data.fortios_systemautoupdate_schedule.this.day } output "frequency" { description = "returns a string" value = data.fortios_systemautoupdate_schedule.this.frequency } output "id" { description = "returns a string" value = data.fortios_systemautoupdate_schedule.this.id } output "status" { description = "returns a string" value = data.fortios_systemautoupdate_schedule.this.status } output "time" { description = "returns a string" value = data.fortios_systemautoupdate_schedule.this.time } output "this" { value = fortios_systemautoupdate_schedule.this } top