terraform-provider-coder
terraform-provider-coder copied to clipboard
When I create a website link to the repository, it uses the same window rather than creating a new `slim-window`. I will also get an alert that `display_name` needs to...
> Looks like we both hit the same issue 😄 (I fixed it doing this: [cd2cf5a](https://github.com/coder/terraform-provider-coder/commit/cd2cf5a8f7b675c46b4a3b423c1936cfee78b665)) > > I think I prefer your solution though 👍 (but not entirely sure...
I recently pushed the `copyparty` module to the registry and while creating it, I found that I had to template some CLI args that I really just needed to pass...
Closes https://github.com/coder/terraform-provider-coder/issues/325
Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.11.0 to 1.11.1. Release notes Sourced from github.com/stretchr/testify's releases. v1.11.1 This release fixes #1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string)...
## Description As discussed in coder/coder#3055, there's a need for a dedicated Terraform resource to write arbitrary files into Coder workspaces with proper permission control. ## Problem Currently, template authors...
Im using coder template aws. ``` resource "aws_vpc" "main" { cidr_block = "10.0.0.0/16" enable_dns_hostnames = true enable_dns_support = true tags = { Name = "coder-vpc" } } resource "aws_subnet" "main"...
Also present in https://registry.terraform.io/providers/coder/coder/latest/docs/data-sources/external_auth
Fixes #272 This PR implements an inline version metadata system for documenting the minimum Coder version required for resources and features introduced after terraform-provider-coder v2.0. ## Implementation ### 1. **Inline...
At present, there is no good way to extract the agent name from Terraform and use it within the template. This is relevant for `coder_app`'s or anything else that wishes...