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"bigip_ltm_profile_httpcompress" {
source="./modules/bigip/r/bigip_ltm_profile_httpcompress"# content_type_exclude - (optional) is a type of set of stringcontent_type_exclude=[]
# content_type_include - (optional) is a type of set of stringcontent_type_include=[]
# defaults_from - (optional) is a type of stringdefaults_from=null# name - (required) is a type of stringname=null# uri_exclude - (optional) is a type of set of stringuri_exclude=[]
# uri_include - (optional) is a type of set of stringuri_include=[]
}
variable"content_type_exclude" {
description="(optional) - Specifies a list of content types for compression of HTTP Content-Type responses. Use a string list to specify a list of content types you want to exclude."type=set(string)
default=null
}
variable"content_type_include" {
description="(optional) - Specifies a list of content types for compression of HTTP Content-Type responses. Use a string list to specify a list of content types you want to compress."type=set(string)
default=null
}
variable"defaults_from" {
description="(optional) - Use the parent Httpcompress profile"type=stringdefault=null
}
variable"name" {
description="(required) - Name of the Httpcompress Profile"type=string
}
variable"uri_exclude" {
description="(optional) - Servers Address"type=set(string)
default=null
}
variable"uri_include" {
description="(optional) - Servers Address"type=set(string)
default=null
}
resource"bigip_ltm_profile_httpcompress""this" {
# content_type_exclude - (optional) is a type of set of stringcontent_type_exclude=var.content_type_exclude# content_type_include - (optional) is a type of set of stringcontent_type_include=var.content_type_include# defaults_from - (optional) is a type of stringdefaults_from=var.defaults_from# name - (required) is a type of stringname=var.name# uri_exclude - (optional) is a type of set of stringuri_exclude=var.uri_exclude# uri_include - (optional) is a type of set of stringuri_include=var.uri_include
}
output"content_type_exclude" {
description="returns a set of string"value=bigip_ltm_profile_httpcompress.this.content_type_exclude
}
output"content_type_include" {
description="returns a set of string"value=bigip_ltm_profile_httpcompress.this.content_type_include
}
output"defaults_from" {
description="returns a string"value=bigip_ltm_profile_httpcompress.this.defaults_from
}
output"id" {
description="returns a string"value=bigip_ltm_profile_httpcompress.this.id
}
output"uri_exclude" {
description="returns a set of string"value=bigip_ltm_profile_httpcompress.this.uri_exclude
}
output"uri_include" {
description="returns a set of string"value=bigip_ltm_profile_httpcompress.this.uri_include
}
output"this" {
value=bigip_ltm_profile_httpcompress.this
}