-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: set git clone & dotfiles as optional #384
base: main
Are you sure you want to change the base?
Conversation
Hey @ericpaulsen, my opinion is that the |
@phorcys420 yes, could you give me a code snippet of what you are describing? |
I was convinced that something like this would work: data "coder_parameter" "enable_code_server" {
name = "code-server?"
type = "bool"
default = true
}
module "code-server" {
count = data.coder_parameter.enable_code_server.value == true ? 1 : 0
source = "dev.registry.coder.com/modules/code-server/coder"
version = ">= 1.0.0"
agent_id = coder_agent.dev.id
folder = local.repo_dir
auto_install_extensions = true
} But I couldn't get it to ever add the module, maybe it doesn't work with modules. |
@ericpaulsen that said, I don't think we should make the script more permissive for an edge-case, rather add a do-nothing toggle if using |
We should handle this in the terraform and make the input optional and skip running the |
@matifali were you able to take a look? otherwise i can take it from now on |
@phorcys420 no I wasn't. It would be nice if you can. Thanks 🙏 |
customers are making good use of our dotfiles & git clone modules. however, there are scenarios where users may not want to set a repo URL or dotfiles URL, despite the module being present in the template.
the changes in this PR prevent the modules from failing if such fields are unset.