|
| 1 | +variable "equinix_client_id" { |
| 2 | + description = "Equinix client ID (consumer key), obtained after registering app in the developer platform" |
| 3 | + type = string |
| 4 | + sensitive = true |
| 5 | +} |
| 6 | +variable "equinix_client_secret" { |
| 7 | + description = "Equinix client secret ID (consumer secret), obtained after registering app in the developer platform" |
| 8 | + type = string |
| 9 | + sensitive = true |
| 10 | +} |
| 11 | +variable "connection_name" { |
| 12 | + description = "Connection name. An alpha-numeric 24 characters string which can include only hyphens and underscores" |
| 13 | + type = string |
| 14 | +} |
| 15 | +variable "connection_type" { |
| 16 | + description = "Defines the connection type like VG_VC, EVPL_VC, EPL_VC, EC_VC, IP_VC, ACCESS_EPL_VC" |
| 17 | + type = string |
| 18 | +} |
| 19 | +variable "notifications_type" { |
| 20 | + description = "Notification Type - ALL is the only type currently supported" |
| 21 | + type = string |
| 22 | + default = "ALL" |
| 23 | +} |
| 24 | +variable "notifications_emails" { |
| 25 | + description = "Array of contact emails" |
| 26 | + type = list(string) |
| 27 | +} |
| 28 | +variable "bandwidth" { |
| 29 | + description = "Connection bandwidth in Mbps" |
| 30 | + type = number |
| 31 | +} |
| 32 | +variable "purchase_order_number" { |
| 33 | + description = "Order number" |
| 34 | + type = string |
| 35 | + default = "" |
| 36 | +} |
| 37 | +variable "aside_vlan_tag" { |
| 38 | + description = "Vlan Tag information, outer vlanSTag for QINQ connections" |
| 39 | + type = string |
| 40 | +} |
| 41 | +variable "zside_ap_type" { |
| 42 | + description = "Access point type - COLO, VD, VG, SP, IGW, SUBNET, GW" |
| 43 | + type = string |
| 44 | +} |
| 45 | +variable "zside_ap_profile_type" { |
| 46 | + description = "Service profile type - L2_PROFILE, L3_PROFILE, ECIA_PROFILE, ECMC_PROFILE" |
| 47 | + type = string |
| 48 | +} |
| 49 | +variable "zside_location" { |
| 50 | + description = "Access point metro code" |
| 51 | + type = string |
| 52 | +} |
| 53 | +variable "zside_sp_name" { |
| 54 | + description = "Equinix Service Profile Name" |
| 55 | + type = string |
| 56 | +} |
| 57 | +variable "physical_ports_type" { |
| 58 | + description = "Physical ports type" |
| 59 | + type = string |
| 60 | + default = "1000BASE_LX" |
| 61 | +} |
| 62 | +variable "physical_ports_speed" { |
| 63 | + description = "Physical ports speed" |
| 64 | + type = number |
| 65 | + default = 1000 |
| 66 | +} |
| 67 | +variable "connectivity_source_type" { |
| 68 | + description = "Connectivity source type" |
| 69 | + type = string |
| 70 | + default = "COLO" |
| 71 | +} |
| 72 | +variable "account_number" { |
| 73 | + description = "Account number" |
| 74 | + type = string |
| 75 | +} |
| 76 | +variable "metro_code" { |
| 77 | + description = "Metro code" |
| 78 | + type = string |
| 79 | +} |
| 80 | +variable "ibx" { |
| 81 | + description = "IBX" |
| 82 | + type = string |
| 83 | +} |
| 84 | +variable "demarcation_point_ibx" { |
| 85 | + description = "Demarcation point IBX" |
| 86 | + type = string |
| 87 | +} |
| 88 | +variable "cage_unique_space_id" { |
| 89 | + description = "Cage unique space ID" |
| 90 | + type = string |
| 91 | +} |
| 92 | +variable "cabinet_unique_space_id" { |
| 93 | + description = "Cabinet unique space ID" |
| 94 | + type = string |
| 95 | +} |
| 96 | +variable "patch_panel" { |
| 97 | + description = "Patch panel" |
| 98 | + type = string |
| 99 | +} |
| 100 | +variable "project_id" { |
| 101 | + description = "Project ID" |
| 102 | + type = string |
| 103 | +} |
| 104 | +variable "registered_user" { |
| 105 | + description = "Registered user for notifications" |
| 106 | + type = string |
| 107 | +} |
| 108 | +variable "physical_ports_count" { |
| 109 | + description = "Physical ports count" |
| 110 | + type = number |
| 111 | + default = 1 |
| 112 | +} |
| 113 | +variable "tag_protocol_id" { |
| 114 | + description = "Tag protocol ID" |
| 115 | + type = string |
| 116 | +} |
| 117 | +variable "connector_type" { |
| 118 | + description = "Connector type" |
| 119 | + type = string |
| 120 | +} |
| 121 | +variable "package_type" { |
| 122 | + description = "Package type" |
| 123 | + type = string |
| 124 | + default = "STANDARD" |
| 125 | +} |
| 126 | +variable "priority" { |
| 127 | + description = "Redundancy priority" |
| 128 | + type = string |
| 129 | +} |
| 130 | +variable "encapsulation_type" { |
| 131 | + description = "Encapsulation type" |
| 132 | + type = string |
| 133 | +} |
| 134 | +variable "lag_enabled" { |
| 135 | + description = "LAG enabled" |
| 136 | + type = bool |
| 137 | +} |
| 138 | +variable "shared_port_type" { |
| 139 | + description = "Shared port type" |
| 140 | + type = bool |
| 141 | +} |
| 142 | +variable "type" { |
| 143 | + description = "Physical port type" |
| 144 | + type = string |
| 145 | +} |
0 commit comments