diff --git a/byo-vpc/byo-db/byo-ecs/variables.tf b/byo-vpc/byo-db/byo-ecs/variables.tf index aa5812f..904a296 100644 --- a/byo-vpc/byo-db/byo-ecs/variables.tf +++ b/byo-vpc/byo-db/byo-ecs/variables.tf @@ -16,7 +16,7 @@ variable "fleet_config" { mem = optional(number, 4096) cpu = optional(number, 512) pid_mode = optional(string, null) - image = optional(string, "fleetdm/fleet:v4.80.2") + image = optional(string, "fleetdm/fleet:v4.81.0") family = optional(string, "fleet") sidecars = optional(list(any), []) depends_on = optional(list(any), []) @@ -132,7 +132,7 @@ variable "fleet_config" { mem = 512 cpu = 256 pid_mode = null - image = "fleetdm/fleet:v4.80.2" + image = "fleetdm/fleet:v4.81.0" family = "fleet" sidecars = [] depends_on = [] diff --git a/byo-vpc/byo-db/variables.tf b/byo-vpc/byo-db/variables.tf index e6a27f1..c97cacb 100644 --- a/byo-vpc/byo-db/variables.tf +++ b/byo-vpc/byo-db/variables.tf @@ -77,7 +77,7 @@ variable "fleet_config" { mem = optional(number, 4096) cpu = optional(number, 512) pid_mode = optional(string, null) - image = optional(string, "fleetdm/fleet:v4.80.2") + image = optional(string, "fleetdm/fleet:v4.81.0") family = optional(string, "fleet") sidecars = optional(list(any), []) depends_on = optional(list(any), []) @@ -219,7 +219,7 @@ variable "fleet_config" { mem = 512 cpu = 256 pid_mode = null - image = "fleetdm/fleet:v4.80.2" + image = "fleetdm/fleet:v4.81.0" family = "fleet" sidecars = [] depends_on = [] diff --git a/byo-vpc/example/main.tf b/byo-vpc/example/main.tf index 5c3a3e7..f912cb6 100644 --- a/byo-vpc/example/main.tf +++ b/byo-vpc/example/main.tf @@ -17,7 +17,7 @@ provider "aws" { } locals { - fleet_image = "fleetdm/fleet:v4.80.2" + fleet_image = "fleetdm/fleet:v4.81.0" domain_name = "example.com" } diff --git a/byo-vpc/variables.tf b/byo-vpc/variables.tf index 5bbffc1..d92f294 100644 --- a/byo-vpc/variables.tf +++ b/byo-vpc/variables.tf @@ -186,7 +186,7 @@ variable "fleet_config" { mem = optional(number, 4096) cpu = optional(number, 512) pid_mode = optional(string, null) - image = optional(string, "fleetdm/fleet:v4.80.2") + image = optional(string, "fleetdm/fleet:v4.81.0") family = optional(string, "fleet") sidecars = optional(list(any), []) depends_on = optional(list(any), []) @@ -328,7 +328,7 @@ variable "fleet_config" { mem = 512 cpu = 256 pid_mode = null - image = "fleetdm/fleet:v4.80.2" + image = "fleetdm/fleet:v4.81.0" family = "fleet" sidecars = [] depends_on = [] diff --git a/example/main.tf b/example/main.tf index 274a1b3..75c2970 100644 --- a/example/main.tf +++ b/example/main.tf @@ -87,7 +87,7 @@ module "fleet" { fleet_config = { # To avoid pull-rate limiting from dockerhub, consider using our quay.io mirror # for the Fleet image. e.g. "quay.io/fleetdm/fleet:v4.67.0" - image = "fleetdm/fleet:v4.80.2" # override default to deploy the image you desire + image = "fleetdm/fleet:v4.81.0" # override default to deploy the image you desire # See https://fleetdm.com/docs/deploy/reference-architectures#aws for appropriate scaling # memory and cpu. autoscaling = { diff --git a/gcp/.header.md b/gcp/.header.md index 50f998d..9309bc8 100644 --- a/gcp/.header.md +++ b/gcp/.header.md @@ -89,7 +89,7 @@ This Terraform project automates the deployment of Fleet Device Management (Flee * `dns_zone_name`: The DNS zone that will be created/managed in Cloud DNS (e.g., `mydomain.com.`). **Must end with a dot.** * `dns_record_name`: The specific DNS record for Fleet (e.g., `fleet.mydomain.com.`). **Must end with a dot.** * `project_name`: A descriptive name for the project to be created. -* `fleet_config.image_tag`: The Docker image tag for the Fleet version you want to deploy (e.g., `fleetdm/fleet:v4.80.2`). +* `fleet_config.image_tag`: The Docker image tag for the Fleet version you want to deploy (e.g., `fleetdm/fleet:v4.81.0`). * `fleet_config.exec_migration`: Set to `true` when you are upgrading the `fleet_config.image_tag` to automatically run database migrations. Set to `false` if you want to manage migrations manually or if it's not an image upgrade. * `fleet_config.license_key` (Optional, inside the `fleet_config` object): Your Fleet license key if you have one. diff --git a/gcp/byo-project/variables.tf b/gcp/byo-project/variables.tf index b134ce1..2831604 100644 --- a/gcp/byo-project/variables.tf +++ b/gcp/byo-project/variables.tf @@ -107,7 +107,7 @@ variable "fleet_config" { }))) }) default = { - image_tag = "fleetdm/fleet:v4.80.2" + image_tag = "fleetdm/fleet:v4.81.0" installers_bucket_name = "" fleet_cpu = "1000m" fleet_memory = "4096Mi" diff --git a/gcp/variables.tf b/gcp/variables.tf index 358b186..7baaa01 100644 --- a/gcp/variables.tf +++ b/gcp/variables.tf @@ -137,7 +137,7 @@ variable "fleet_config" { }))) }) default = { - image_tag = "fleetdm/fleet:v4.80.2" + image_tag = "fleetdm/fleet:v4.81.0" installers_bucket_name = "" # Bucket names must be globally unique fleet_cpu = "1000m" fleet_memory = "4096Mi" diff --git a/variables.tf b/variables.tf index c01f585..0b069f4 100644 --- a/variables.tf +++ b/variables.tf @@ -234,7 +234,7 @@ variable "fleet_config" { mem = optional(number, 4096) cpu = optional(number, 512) pid_mode = optional(string, null) - image = optional(string, "fleetdm/fleet:v4.80.2") + image = optional(string, "fleetdm/fleet:v4.81.0") family = optional(string, "fleet") sidecars = optional(list(any), []) depends_on = optional(list(any), []) @@ -376,7 +376,7 @@ variable "fleet_config" { mem = 512 cpu = 256 pid_mode = null - image = "fleetdm/fleet:v4.80.2" + image = "fleetdm/fleet:v4.81.0" family = "fleet" sidecars = [] depends_on = []