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_dns_domain" {
source="./modules/checkpoint/r/checkpoint_management_dns_domain"# color - (optional) is a type of stringcolor=null# comments - (optional) is a type of stringcomments=null# ignore_errors - (optional) is a type of boolignore_errors=null# ignore_warnings - (optional) is a type of boolignore_warnings=null# is_sub_domain - (optional) is a type of boolis_sub_domain=null# name - (required) is a type of stringname=null# tags - (optional) is a type of set of stringtags=[]
}
variable"color" {
description="(optional) - Color of the object. Should be one of existing colors."type=stringdefault=null
}
variable"comments" {
description="(optional) - Comments string."type=stringdefault=null
}
variable"ignore_errors" {
description="(optional) - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored."type=booldefault=null
}
variable"ignore_warnings" {
description="(optional) - Apply changes ignoring warnings."type=booldefault=null
}
variable"is_sub_domain" {
description="(optional) - Whether to match sub-domains in addition to the domain itself."type=booldefault=null
}
variable"name" {
description="(required) - Object name."type=string
}
variable"tags" {
description="(optional) - Collection of tag identifiers."type=set(string)
default=null
}
resource"checkpoint_management_dns_domain""this" {
# color - (optional) is a type of stringcolor=var.color# comments - (optional) is a type of stringcomments=var.comments# ignore_errors - (optional) is a type of boolignore_errors=var.ignore_errors# ignore_warnings - (optional) is a type of boolignore_warnings=var.ignore_warnings# is_sub_domain - (optional) is a type of boolis_sub_domain=var.is_sub_domain# name - (required) is a type of stringname=var.name# tags - (optional) is a type of set of stringtags=var.tags
}