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"google_compute_managed_ssl_certificate" {
source="./modules/google-beta/r/google_compute_managed_ssl_certificate"# certificate_id - (optional) is a type of numbercertificate_id=null# description - (optional) is a type of stringdescription=null# name - (optional) is a type of stringname=null# project - (optional) is a type of stringproject=null# type - (optional) is a type of stringtype=nullmanaged=[{
domains = []
}]
timeouts=[{
create =null
delete =null
}]
}
variable"certificate_id" {
description="(optional) - The unique identifier for the resource."type=numberdefault=null
}
variable"description" {
description="(optional) - An optional description of this resource."type=stringdefault=null
}
variable"name" {
description="(optional) - Name of the resource. Provided by the client when the resource is\ncreated. The name must be 1-63 characters long, and comply with\nRFC1035. Specifically, the name must be 1-63 characters long and match\nthe regular expression '[a-z]([-a-z0-9]*[a-z0-9])?' which means the\nfirst character must be a lowercase letter, and all following\ncharacters must be a dash, lowercase letter, or digit, except the last\ncharacter, which cannot be a dash.\n\n\nThese are in the same namespace as the managed SSL certificates."type=stringdefault=null
}
variable"project" {
description="(optional)"type=stringdefault=null
}
variable"type" {
description="(optional) - Enum field whose value is always 'MANAGED' - used to signal to the API\nwhich type this is. Default value: \"MANAGED\" Possible values: [\"MANAGED\"]"type=stringdefault=null
}
variable"managed" {
description="nested block: NestingList, min items: 0, max items: 1"type=set(object(
{
domains =list(string)
}
))
default=[]
}
variable"timeouts" {
description="nested block: NestingSingle, min items: 0, max items: 0"type=set(object(
{
create =string
delete =string
}
))
default=[]
}
resource"google_compute_managed_ssl_certificate""this" {
# certificate_id - (optional) is a type of numbercertificate_id=var.certificate_id# description - (optional) is a type of stringdescription=var.description# name - (optional) is a type of stringname=var.name# project - (optional) is a type of stringproject=var.project# type - (optional) is a type of stringtype=var.typedynamic"managed" {
for_each=var.managedcontent {
# domains - (required) is a type of list of stringdomains=managed.value["domains"]
}
}
dynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
}
}
}