Christopher Boyd
Christopher Boyd
@macos-fuse-t I think you meant https://github.com/macos-fuse-t/mountpoint-s3 Took a bit for me to find it
Potential fix: ```hcl module "user_data" { source = "../_user_data" create = var.create && var.create_launch_template && var.use_custom_launch_template ... } ```
@z4ce I'm not suggesting it's a **_technical_** problem. ~~I'm just stating that it seems problematic to use `version: ~1.2.3-0` in the docs when `1.2.3-0` in and of itself isn't valid...
Ok. So after checking, `1.2.3-0` is in fact valid but the error is confusing: ``` ➜ helm package --version "1.2.3-0" api Successfully packaged chart and saved it to: api-1.2.3-0.tgz ➜...
Just to note other breaking changes: Currently the parser retains all quotes (single, double, or backticks) while `dotenv` would remove the outer quote pair. This was previously brought up as...
[The FAQ](https://www.hashicorp.com/license-faq#products-covered-by-bsl) notes: > Security fixes will be backported under MPL 2.0 through December 31, 2023. I'm wondering if towards the end of the year there might be more efforts...
It'd be nice if the Docker images could be updated to `alphine3.19` to support postgres16.
Like @jzombie the extension cannot toggle and is now stuck in the respective state for each site. Sites left disabled cannot toggle to enabled and vice-versa.
@bryantbiggs As mentioned, this fails with an error due to https://github.com/hashicorp/terraform/issues/5471: ```tf module "iam_assumable_role" { source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role" version = "5.44.0" role_name_prefix = "test" trusted_role_actions = null } ``` If,...
The `options: --user root` didn't work for me, but it does from the `docker` CLI. I had to use `options: --user 0` instead. Does anyone know why the user didn't...