You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"checkpoint_management_migrate_export_domain" {
source="./modules/checkpoint/r/checkpoint_management_migrate_export_domain"# domain - (required) is a type of stringdomain=null# file_path - (optional) is a type of stringfile_path=null# include_logs - (optional) is a type of boolinclude_logs=null
}
variable"domain" {
description="(required) - Domain can be identified by name or UID.<br><font color=\"red\">Required only for</font> exporting domain from Multi-Domain Server."type=string
}
variable"file_path" {
description="(optional) - Path in which the exported domain data will be saved. <br>Should be the directory path or the full file path with \".tgz\" <br>If no path was inserted the default will be: \"/var/log/<domain name>_<date>.tgz\"."type=stringdefault=null
}
variable"include_logs" {
description="(optional) - Export logs."type=booldefault=null
}
resource"checkpoint_management_migrate_export_domain""this" {
# domain - (required) is a type of stringdomain=var.domain# file_path - (optional) is a type of stringfile_path=var.file_path# include_logs - (optional) is a type of boolinclude_logs=var.include_logs
}