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_mds" {
source="./modules/checkpoint/r/checkpoint_management_mds"# color - (optional) is a type of stringcolor=null# comments - (optional) is a type of stringcomments=null# hardware - (optional) is a type of stringhardware=null# ignore_errors - (optional) is a type of boolignore_errors=null# ignore_warnings - (optional) is a type of boolignore_warnings=null# ip_pool_first - (optional) is a type of stringip_pool_first=null# ip_pool_last - (optional) is a type of stringip_pool_last=null# ipv4_address - (optional) is a type of stringipv4_address=null# ipv6_address - (optional) is a type of stringipv6_address=null# name - (required) is a type of stringname=null# one_time_password - (optional) is a type of stringone_time_password=null# os - (optional) is a type of stringos=null# server_type - (optional) is a type of stringserver_type=null# tags - (optional) is a type of set of stringtags=[]
# version - (optional) is a type of stringversion=null
}
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"hardware" {
description="(optional) - Hardware name. For example: Open server, Smart-1, Other."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"ip_pool_first" {
description="(optional) - First IP address in the range."type=stringdefault=null
}
variable"ip_pool_last" {
description="(optional) - Last IP address in the range."type=stringdefault=null
}
variable"ipv4_address" {
description="(optional) - IPv4 address."type=stringdefault=null
}
variable"ipv6_address" {
description="(optional) - IPv6 address."type=stringdefault=null
}
variable"name" {
description="(required) - Object name."type=string
}
variable"one_time_password" {
description="(optional) - Secure internal connection one time password."type=stringdefault=null
}
variable"os" {
description="(optional) - Operating system name. For example: Gaia, Linux, SecurePlatform."type=stringdefault=null
}
variable"server_type" {
description="(optional) - Type of the management server."type=stringdefault=null
}
variable"tags" {
description="(optional) - Collection of tag identifiers."type=set(string)
default=null
}
variable"version" {
description="(optional) - System version."type=stringdefault=null
}
resource"checkpoint_management_mds""this" {
# color - (optional) is a type of stringcolor=var.color# comments - (optional) is a type of stringcomments=var.comments# hardware - (optional) is a type of stringhardware=var.hardware# ignore_errors - (optional) is a type of boolignore_errors=var.ignore_errors# ignore_warnings - (optional) is a type of boolignore_warnings=var.ignore_warnings# ip_pool_first - (optional) is a type of stringip_pool_first=var.ip_pool_first# ip_pool_last - (optional) is a type of stringip_pool_last=var.ip_pool_last# ipv4_address - (optional) is a type of stringipv4_address=var.ipv4_address# ipv6_address - (optional) is a type of stringipv6_address=var.ipv6_address# name - (required) is a type of stringname=var.name# one_time_password - (optional) is a type of stringone_time_password=var.one_time_password# os - (optional) is a type of stringos=var.os# server_type - (optional) is a type of stringserver_type=var.server_type# tags - (optional) is a type of set of stringtags=var.tags# version - (optional) is a type of stringversion=var.version
}
output"domains" {
description="returns a set of string"value=checkpoint_management_mds.this.domains
}
output"global_domains" {
description="returns a set of string"value=checkpoint_management_mds.this.global_domains
}
output"id" {
description="returns a string"value=checkpoint_management_mds.this.id
}
output"sic_name" {
description="returns a string"value=checkpoint_management_mds.this.sic_name
}
output"sic_state" {
description="returns a string"value=checkpoint_management_mds.this.sic_state
}
output"this" {
value=checkpoint_management_mds.this
}