fleet/infrastructure/dogfood/terraform/gcp/variables.tf
George Karr ea4ca5b948
Adding changes for Fleet v4.83.2 (#43495)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Chores**
* Released patch version v4.83.2 with updated Helm chart and application
metadata.
* Updated deployment configurations to use the latest container image
version across cloud providers.
  * Updated published package version to v4.83.2.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Luke Heath <luke@fleetdm.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-04-17 12:26:30 -05:00

85 lines
1.2 KiB
HCL

variable "region" {
description = "gcp region"
default = "us-central1"
}
variable "db_zone" {
default = "us-central1-c"
}
variable "db_user" {
default = "default"
}
variable "db_name" {
default = "fleet"
}
variable "db_tier" {
default = "db-custom-1-3840"
}
variable "db_version" {
default = "MYSQL_8_0"
}
variable "fleet_cpu" {
default = "1000m"
}
variable "fleet_memory" {
default = "1024Mi"
}
variable "dns_zone" {
default = ""
}
variable "dns_name" {
default = ""
}
variable "serverless_connector_min_instances" {
default = 2
}
variable "serverless_connector_max_instances" {
default = 3
}
variable "serverless_connector_instance_type" {
default = "f1-micro"
}
variable "vpc_subnet" {
default = "10.10.10.0/28"
}
variable "project_id" {
description = "gcp project id"
}
variable "prefix" {
default = "fleet"
description = "prefix resources with this string"
}
variable "redis_mem" {
default = 1
}
variable "image" {
default = "fleetdm/fleet:v4.83.2"
}
variable "software_installers_bucket_name" {
default = "fleet-software-installers"
}
variable "license_key" {
default = ""
description = "Fleet license key"
}
variable "debug_logging" {
default = "false"
}