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_https_layer" {
source="./modules/checkpoint/r/checkpoint_management_https_layer"# 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# name - (required) is a type of stringname=null# shared - (optional) is a type of boolshared=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"name" {
description="(required) - Object name."type=string
}
variable"shared" {
description="(optional) - Define the Layer as Shared (TRUE/FALSE)."type=booldefault=null
}
variable"tags" {
description="(optional) - Collection of tag identifiers."type=set(string)
default=null
}
resource"checkpoint_management_https_layer""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# name - (required) is a type of stringname=var.name# shared - (optional) is a type of boolshared=var.shared# tags - (optional) is a type of set of stringtags=var.tags
}