Skip to content

Commit 0e8e338

Browse files
committed
chore: Remove unneeded concat
1 parent a075df3 commit 0e8e338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/do-linux/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ resource "digitalocean_droplet" "workspace" {
130130
coder_agent_token = coder_agent.dev.token
131131
})
132132
# Required to provision Fedora.
133-
ssh_keys = concat([], var.step3_do_admin_ssh_key > 0 ? [var.step3_do_admin_ssh_key] : [])
133+
ssh_keys = var.step3_do_admin_ssh_key > 0 ? [var.step3_do_admin_ssh_key] : []
134134
}
135135

136136
# resource "digitalocean_project_resources" "project" {

0 commit comments

Comments
 (0)