Marc Meszaros
Marc Meszaros
Fix for #284 by using the new [releases API](https://releases.hashicorp.com/docs/api/v1/#operation/getReleaseV1). The new release API doesn't seem to suffer from the `Content-Type` issue as compared to the legacy metadata service. **This pull...
I have a scenario where we would like to create an index over some nullable columns. I found out that specifying `NULLS NOT DISTINCT` on the index in postgres v15+...
Makes prometheus optional by default and opt-in using `var.use_prometheus`. It passes in a similarly names `use_prometheus` variable to the `user-data.txt` template file interpolation call and uses an if condition inside...
Previously the `use_eip` variable wasn't actually used to determine if an Elastic IP should be created or not. The Elastic IP resource now checks for `var.use_eip`. Since `use_route53` and the...
If you don't specify a prometheus server IP in the module variables, you get an error provisioning the security group. ``` │ Error: Null value found in list │ │...
Use empty string for template file interpolation to avoid null error in terraform when rendering the `user-data.txt`. In this particular case since `use_ssm` is passed to the template and fails...
The description for `use_eip` in `variables.tf`: `Whether to enable Elastic IP switching code in user-data on wg server startup. If true, eip_id must also be set to the ID of...
By default `use_ssm = false`. This causes template rendering to fail (in terraform `v0.15.0+` at least). ``` │ Error: Error in function call │ │ on .terraform/modules/wireguard/main.tf line 58, in...
Although the auto column width algorithm take cares of adjusting everything along the x axis, we also need to do something about the y axis (row heights). 1. compute column...