fortios_system_autoinstall back Index Example Usage Variables Datasource Outputs Terraform terraform { required_providers { fortios = ">= 1.11.0" } } top Example Usage module "fortios_system_autoinstall" { source = "./modules/fortios/d/fortios_system_autoinstall" } top Variables top Datasource data "fortios_system_autoinstall" "this" { } top Outputs output "auto_install_config" { description = "returns a string" value = data.fortios_system_autoinstall.this.auto_install_config } output "auto_install_image" { description = "returns a string" value = data.fortios_system_autoinstall.this.auto_install_image } output "default_config_file" { description = "returns a string" value = data.fortios_system_autoinstall.this.default_config_file } output "default_image_file" { description = "returns a string" value = data.fortios_system_autoinstall.this.default_image_file } output "id" { description = "returns a string" value = data.fortios_system_autoinstall.this.id } output "this" { value = fortios_system_autoinstall.this } top