@@ -46,6 +46,22 @@ variable "sensor_ssh_public_key" {
4646 type = string
4747}
4848
49+ variable "fleet_token" {
50+ type = string
51+ sensitive = true
52+ description = " The pairing token from the Fleet UI. Must be set if 'fleet_url' is provided"
53+ }
54+
55+ variable "fleet_url" {
56+ type = string
57+ description = " URL of the fleet instance from the Fleet UI. Must be set if 'fleet_token' is provided"
58+ }
59+
60+ variable "fleet_server_sslname" {
61+ type = string
62+ description = " SSL hostname for the fleet server"
63+ }
64+
4965# # Variables with defaults
5066variable "sensor_admin_username" {
5167 description = " The name of the admin user on the corelight sensor VM in the VMSS"
@@ -95,18 +111,6 @@ variable "virtual_machine_os_disk_size" {
95111 default = 500
96112}
97113
98- variable "enrichment_storage_account_name" {
99- description = " (optional) the azure storage account where enrichment data is stored"
100- type = string
101- default = " "
102- }
103-
104- variable "enrichment_storage_container_name" {
105- description = " (optional) the container where enrichment data is stored"
106- type = string
107- default = " "
108- }
109-
110114variable "lb_management_frontend_ip_config_name" {
111115 description = " Name of the internal load balancer management backend pool frontend ip configuration"
112116 type = string
@@ -149,12 +153,6 @@ variable "lb_vxlan_rule_name" {
149153 default = " vxlan-lb-rule"
150154}
151155
152- variable "lb_health_check_rule_name" {
153- description = " Name of the load balancer rule for health check traffic"
154- type = string
155- default = " healthcheck-lb-rule"
156- }
157-
158156variable "lb_ssh_rule_name" {
159157 description = " Name of the load balancer rule for SSH traffic"
160158 type = string
@@ -167,25 +165,6 @@ variable "tags" {
167165 default = {}
168166}
169167
170- variable "fleet_token" {
171- type = string
172- default = " "
173- sensitive = true
174- description = " (optional) the pairing token from the Fleet UI. Must be set if 'fleet_url' is provided"
175- }
176-
177- variable "fleet_url" {
178- type = string
179- default = " "
180- description = " (optional) the URL of the fleet instance from the Fleet UI. Must be set if 'fleet_token' is provided"
181- }
182-
183- variable "fleet_server_sslname" {
184- type = string
185- default = " 1.broala.fleet.product.corelight.io"
186- description = " (optional) the SSL hostname for the fleet server"
187- }
188-
189168variable "fleet_http_proxy" {
190169 type = string
191170 default = " "
0 commit comments