Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore: update example templates to use display_name #7001

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

Merged
merged 17 commits into from
Apr 12, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update main.tf
  • Loading branch information
matifali authored Apr 9, 2023
commit a7352779cfccc785ffa06d660c52519f56e93ea6
6 changes: 3 additions & 3 deletions examples/templates/fly-docker-image/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ EOF

data "coder_parameter" "docker-image" {
name = "docker-image"
display_name = "Docker Image"
display_name = "Docker image"
description = "The docker image to use for the workspace"
default = "codercom/code-server:latest"
icon = "https://raw.githubusercontent.com/matifali/logos/main/docker.svg"
Expand All @@ -131,7 +131,7 @@ data "coder_parameter" "cpu" {

data "coder_parameter" "cputype" {
name = "cputype"
display_name = "CPU Type"
display_name = "CPU type"
description = "Which CPU type do you want?"
default = "shared"
icon = "https://raw.githubusercontent.com/matifali/logos/main/cpu-1.svg"
Expand Down Expand Up @@ -162,7 +162,7 @@ data "coder_parameter" "memory" {

data "coder_parameter" "volume-size" {
name = "volume-size"
display_name = "Home Volume Size"
display_name = "Home volume size"
description = "The size of the volume to create for the workspace in GB (1-20)"
type = "number"
default = "1"
Expand Down