montblu / terraform-octopusdeploy-bootstrap

Simple Terraform module used to manage a Octopus instance
https://registry.terraform.io/modules/montblu/bootstrap/octopusdeploy/latest
GNU General Public License v3.0
0 stars 0 forks source link

variable create_global_resources should not have a default value #37

Open tcarrondo opened 3 hours ago

tcarrondo commented 3 hours ago

If not present on the module declaration, and with default false, some resources are easily skipped.

jdaMachado commented 2 hours ago

Bool values implicitly always default to false. Changing the default to null does not give the desired result. However, @tcarrondo , do you think this could be a solution if var.create_global_resources == null ?

image

tcarrondo commented 2 hours ago

maybe... worth to try.