@@ -34,6 +34,22 @@ variable "community_string" {
3434 sensitive = true
3535}
3636
37+ variable "fleet_token" {
38+ type = string
39+ sensitive = true
40+ description = " Pairing token from the Fleet UI. Must be set if 'fleet_url' is provided"
41+ }
42+
43+ variable "fleet_url" {
44+ type = string
45+ description = " URL of the fleet instance from the Fleet UI. Must be set if 'fleet_token' is provided"
46+ }
47+
48+ variable "fleet_server_sslname" {
49+ type = string
50+ description = " SSL hostname for the fleet server"
51+ }
52+
3753variable "license_key" {
3854 description = " Your Corelight sensor license key. Optional if fleet_url is configured."
3955 sensitive = true
@@ -125,20 +141,8 @@ variable "sensor_management_security_group_description" {
125141 default = " Security group for the sensor which allows ssh from the DMZ / Bastion"
126142}
127143
128- variable "enrichment_bucket_name" {
129- description = " (optional) The name of the s3 bucket where cloud enrichment data is being stored"
130- type = string
131- default = " "
132- }
133-
134- variable "enrichment_bucket_region" {
135- description = " (optional) The region of the cloud enrichment s3 bucket"
136- type = string
137- default = " "
138- }
139-
140- variable "enrichment_instance_profile_arn" {
141- description = " (optional) When configuring enrichment, an instance profile must be added granting the ASG EC2 nodes access to read from the bucket"
144+ variable "instance_profile_arn" {
145+ description = " (optional) Instance profile must be added granting cloud features access to AWS APIs"
142146 type = string
143147 default = " "
144148}
@@ -179,26 +183,6 @@ variable "tags" {
179183 default = {}
180184}
181185
182- variable "fleet_token" {
183- type = string
184- default = " "
185- sensitive = true
186- description = " (optional) the pairing token from the Fleet UI. Must be set if 'fleet_url' is provided"
187- }
188-
189- variable "fleet_url" {
190- type = string
191- default = " "
192- description = " (optional) the URL of the fleet instance from the Fleet UI. Must be set if 'fleet_token' is provided"
193- }
194-
195- variable "fleet_server_sslname" {
196- type = string
197- default = " 1.broala.fleet.product.corelight.io"
198- description = " (optional) the SSL hostname for the fleet server"
199-
200- }
201-
202186variable "fleet_http_proxy" {
203187 type = string
204188 default = " "
0 commit comments