feat: make shell customizable
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Peter 2023-06-15 22:06:52 +02:00
parent afd4540dc7
commit c59097d374
Signed by: prskr
GPG key ID: C1DB5D2E8DB512F9
2 changed files with 11 additions and 3 deletions

View file

@ -3,7 +3,7 @@ users:
- name: ${username} - name: ${username}
sudo: ["ALL=(ALL) NOPASSWD:ALL"] sudo: ["ALL=(ALL) NOPASSWD:ALL"]
groups: sudo groups: sudo
shell: /bin/bash shell: ${user_shell}
packages: packages:
- zsh - zsh
- git - git

View file

@ -57,6 +57,13 @@ data "coder_parameter" "dotfiles_uri" {
mutable = true mutable = true
} }
data "coder_parameter" "user_shell" {
name = "user_shell"
display_name = "Default Shell"
default = "/usr/bin/zsh"
mutable = true
}
data "coder_parameter" "instance_location" { data "coder_parameter" "instance_location" {
name = "instance_location" name = "instance_location"
display_name = "Instance location" display_name = "Instance location"
@ -311,6 +318,7 @@ resource "hcloud_server" "root" {
install_dotnet_setup = data.coder_parameter.install_dotnet.value install_dotnet_setup = data.coder_parameter.install_dotnet.value
install_podman_setup = data.coder_parameter.install_podman.value install_podman_setup = data.coder_parameter.install_podman.value
install_terraform_setup = data.coder_parameter.install_terraform.value install_terraform_setup = data.coder_parameter.install_terraform.value
user_shell = data.coder_parameter.user_shell.value
}) })
dynamic "network" { dynamic "network" {