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"aviatrix_device_registration" {
source="./modules/aviatrix/r/aviatrix_device_registration"# address_1 - (optional) is a type of stringaddress_1=null# address_2 - (optional) is a type of stringaddress_2=null# city - (optional) is a type of stringcity=null# country - (optional) is a type of stringcountry=null# description - (optional) is a type of stringdescription=null# host_os - (optional) is a type of stringhost_os=null# key_file - (optional) is a type of stringkey_file=null# name - (required) is a type of stringname=null# password - (optional) is a type of stringpassword=null# public_ip - (required) is a type of stringpublic_ip=null# ssh_port - (optional) is a type of numberssh_port=null# state - (optional) is a type of stringstate=null# username - (required) is a type of stringusername=null# zip_code - (optional) is a type of stringzip_code=null
}
variable"address_1" {
description="(optional) - Address line 1."type=stringdefault=null
}
variable"address_2" {
description="(optional) - Address line 2."type=stringdefault=null
}
variable"city" {
description="(optional) - City"type=stringdefault=null
}
variable"country" {
description="(optional) - ISO two-letter country code."type=stringdefault=null
}
variable"description" {
description="(optional) - Description."type=stringdefault=null
}
variable"host_os" {
description="(optional) - Device host OS. Default value is 'ios'. Only valid value is 'ios'."type=stringdefault=null
}
variable"key_file" {
description="(optional) - Path to private key file."type=stringdefault=null
}
variable"name" {
description="(required) - Name of the device."type=string
}
variable"password" {
description="(optional) - Password to connect to the device. This attribute can also be set via environment variable 'AVIATRIX_DEVICE_PASSWORD'. If both are set the value in the config file will be used."type=stringdefault=null
}
variable"public_ip" {
description="(required) - Public IP address of the device."type=string
}
variable"ssh_port" {
description="(optional) - SSH port to use to connect to the device. Defaults to 22 if not set."type=numberdefault=null
}
variable"state" {
description="(optional) - State"type=stringdefault=null
}
variable"username" {
description="(required) - Username to use to connect to the device."type=string
}
variable"zip_code" {
description="(optional) - Zip code."type=stringdefault=null
}
resource"aviatrix_device_registration""this" {
# address_1 - (optional) is a type of stringaddress_1=var.address_1# address_2 - (optional) is a type of stringaddress_2=var.address_2# city - (optional) is a type of stringcity=var.city# country - (optional) is a type of stringcountry=var.country# description - (optional) is a type of stringdescription=var.description# host_os - (optional) is a type of stringhost_os=var.host_os# key_file - (optional) is a type of stringkey_file=var.key_file# name - (required) is a type of stringname=var.name# password - (optional) is a type of stringpassword=var.password# public_ip - (required) is a type of stringpublic_ip=var.public_ip# ssh_port - (optional) is a type of numberssh_port=var.ssh_port# state - (optional) is a type of stringstate=var.state# username - (required) is a type of stringusername=var.username# zip_code - (optional) is a type of stringzip_code=var.zip_code
}