Skip to content

Latest commit

 

History

History
84 lines (60 loc) · 1.3 KB

File metadata and controls

84 lines (60 loc) · 1.3 KB

fortios_systemautoupdate_schedule

back

Index

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