We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
option
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
The following parameter does not work
data "coder_parameter" "region" { name = "Region" icon = "/icon/database.svg" description = "These are options." default = "us-east1-a" option { name = "US Central" description = "Select for central!" value = "us-central1-a" icon = "/icon/goland.svg" } option { name = "US East" description = "Select for east!" value = "us-east1-a" icon = "/icon/folder.svg" } option { name = "US West" description = "Select for west!" value = "us-west2-a" } }
"default": only one of `default,option` can be specified, but `default,option` were specified.
The text was updated successfully, but these errors were encountered:
As a workaround, I just did an inline conditional to check if the region is empty
region = data.coder_parameter.region.value != "" ? data.coder_parameter.region.value : "us-east1-a"
Sorry, something went wrong.
Hey @bpmct! I have merged all relevant PRs. Feel free to recheck if the problem still occurs, and if so, we can continue the investigation.
coder_paramter
type = "number"
I tested with 0.6.14 and it seems to be resolved.
mtojek
No branches or pull requests
The following parameter does not work
The text was updated successfully, but these errors were encountered: