|
| 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 "stream_name" { |
| 12 | + description = "Stream name" |
| 13 | + type = string |
| 14 | +} |
| 15 | +variable "stream_description" { |
| 16 | + description = "Stream description" |
| 17 | + type = string |
| 18 | +} |
| 19 | +variable "splunk_enabled" { |
| 20 | + description = "Boolean value indicating enablement of the Splunk Subscription" |
| 21 | + type = bool |
| 22 | + default = true |
| 23 | +} |
| 24 | +variable "splunk_access_token" { |
| 25 | + description = "Credential for Splunk Sink Subscription" |
| 26 | + type = string |
| 27 | + default = "" |
| 28 | + sensitive = true |
| 29 | +} |
| 30 | +variable "splunk_name" { |
| 31 | + description = "Name of the Splunk Equinix Subscription Resource" |
| 32 | + type = string |
| 33 | + default = "" |
| 34 | +} |
| 35 | +variable "splunk_description" { |
| 36 | + description = "Description of the Splunk Equinix Subscription Resource" |
| 37 | + type = string |
| 38 | + default = "" |
| 39 | +} |
| 40 | + |
| 41 | +variable "splunk_uri" { |
| 42 | + description = "URI for the streaming messages to be sent to for Splunk" |
| 43 | + type = string |
| 44 | + default = "" |
| 45 | +} |
| 46 | +variable "splunk_event_exceptions" { |
| 47 | + description = "Events to exclude from the possibilities available to the stream for the Subscription" |
| 48 | + type = list(string) |
| 49 | + default = [] |
| 50 | +} |
| 51 | +variable "splunk_event_selections" { |
| 52 | + description = "Events to include from the possibilities available to the stream for the Subscription" |
| 53 | + type = list(string) |
| 54 | + default = [] |
| 55 | +} |
| 56 | +variable "splunk_metric_exceptions" { |
| 57 | + description = "Metrics to exclude from the possibilities available to the stream for the Subscription" |
| 58 | + type = list(string) |
| 59 | + default = [] |
| 60 | +} |
| 61 | +variable "splunk_metric_selections" { |
| 62 | + description = "Metrics to include from the possibilities available to the stream for the Subscription" |
| 63 | + type = list(string) |
| 64 | + default = [] |
| 65 | +} |
| 66 | +variable "splunk_source" { |
| 67 | + description = "Name of the created Splunk Source for the destination of the streaming messages" |
| 68 | + type = string |
| 69 | + default = "" |
| 70 | +} |
| 71 | +variable "splunk_event_index" { |
| 72 | + description = "Event index for the Splunk Sink Source" |
| 73 | + type = string |
| 74 | + default = "" |
| 75 | +} |
| 76 | +variable "splunk_metric_index" { |
| 77 | + description = "Metric index for Splunk Sink Source" |
| 78 | + type = string |
| 79 | + default = "" |
| 80 | +} |
| 81 | +variable "connection_name" { |
| 82 | + description = "Connection name. An alpha-numeric 24 characters string which can include only hyphens and underscores" |
| 83 | + type = string |
| 84 | +} |
| 85 | +variable "connection_type" { |
| 86 | + description = "Defines the connection type like VG_VC, EVPL_VC, EPL_VC, EC_VC, IP_VC, ACCESS_EPL_VC" |
| 87 | + type = string |
| 88 | +} |
| 89 | +variable "notifications_type" { |
| 90 | + description = "Notification Type - ALL is the only type currently supported" |
| 91 | + type = string |
| 92 | + default = "ALL" |
| 93 | +} |
| 94 | +variable "notifications_emails" { |
| 95 | + description = "Array of contact emails" |
| 96 | + type = list(string) |
| 97 | +} |
| 98 | +variable "bandwidth" { |
| 99 | + description = "Connection bandwidth in Mbps" |
| 100 | + type = number |
| 101 | +} |
| 102 | +variable "purchase_order_number" { |
| 103 | + description = "Purchase order number" |
| 104 | + type = string |
| 105 | + default = "" |
| 106 | +} |
| 107 | +variable "aside_port_name" { |
| 108 | + description = "Equinix A-Side Port Name" |
| 109 | + type = string |
| 110 | +} |
| 111 | +variable "aside_vlan_tag" { |
| 112 | + description = "Vlan tag for DOT1Q or QINQ connections" |
| 113 | + type = string |
| 114 | +} |
| 115 | +variable "zside_ap_type" { |
| 116 | + description = "Access point type - COLO, VD, VG, SP, IGW, SUBNET, GW" |
| 117 | + type = string |
| 118 | +} |
| 119 | +variable "zside_port_name" { |
| 120 | + description = "Equinix Port Name" |
| 121 | + type = string |
| 122 | +} |
| 123 | +variable "zside_vlan_tag" { |
| 124 | + description = "Vlan tag for DOT1Q or QINQ connections" |
| 125 | + type = string |
| 126 | +} |
| 127 | +variable "zside_location" { |
| 128 | + description = "Access point metro code" |
| 129 | + type = string |
| 130 | +} |
| 131 | +variable "asset_type" { |
| 132 | + description = "Asset type" |
| 133 | + type = string |
| 134 | +} |
| 135 | +variable "alert_rule_name" { |
| 136 | + description = "Alert rule name" |
| 137 | + type = string |
| 138 | +} |
| 139 | +variable "alert_rule_description" { |
| 140 | + description = "Alert rule description" |
| 141 | + type = string |
| 142 | +} |
| 143 | +variable "operand" { |
| 144 | + description = "Operand for the alert rule" |
| 145 | + type = string |
| 146 | +} |
| 147 | +variable "window_size" { |
| 148 | + description = "Alert rule window size" |
| 149 | + type = string |
| 150 | +} |
| 151 | +variable "warning_threshold" { |
| 152 | + description = "Warning threshold for the alert rule" |
| 153 | + type = string |
| 154 | +} |
| 155 | +variable "critical_threshold" { |
| 156 | + description = "Critical threshold for the alert rule" |
| 157 | + type = string |
| 158 | +} |
| 159 | +variable "metric_name" { |
| 160 | + description = "Metric Name for the alert rule" |
| 161 | + type = string |
| 162 | +} |
| 163 | +variable "limit" { |
| 164 | + description = "Limit for pagination of alert rules" |
| 165 | + type = number |
| 166 | +} |
| 167 | +variable "offset" { |
| 168 | + description = "Offset for pagination of alert rules" |
| 169 | + type = number |
| 170 | +} |
0 commit comments