diff --git a/infrastructure/dogfood/terraform/aws-tf-module/main.tf b/infrastructure/dogfood/terraform/aws-tf-module/main.tf index b73af86916..9e3c8d9434 100644 --- a/infrastructure/dogfood/terraform/aws-tf-module/main.tf +++ b/infrastructure/dogfood/terraform/aws-tf-module/main.tf @@ -176,7 +176,7 @@ module "migrations" { } module "mdm" { - source = "github.com/fleetdm/fleet//terraform/addons/mdm?ref=tf-mod-addon-mdm-v1.2.0" + source = "github.com/fleetdm/fleet//terraform/addons/mdm?ref=tf-mod-addon-mdm-v1.2.1" public_domain_name = "dogfood.fleetdm.com" enable_windows_mdm = true apn_secret_name = "${local.customer}-apn" diff --git a/terraform/addons/mdm/variables.tf b/terraform/addons/mdm/variables.tf index ba78dbbdf7..b1dc3055f7 100644 --- a/terraform/addons/mdm/variables.tf +++ b/terraform/addons/mdm/variables.tf @@ -24,5 +24,5 @@ variable "public_domain_name" { variable "enable_windows_mdm" { default = false nullable = false - type = boolean + type = bool }