Skip to content

Instantly share code, notes, and snippets.

@iamkirkbater
Created December 18, 2018 19:37
Show Gist options
  • Save iamkirkbater/c13dc795a3f730dbcfb49ce4e424c28b to your computer and use it in GitHub Desktop.
Save iamkirkbater/c13dc795a3f730dbcfb49ce4e424c28b to your computer and use it in GitHub Desktop.
No default workspaces in terraform
resource "null_resource" "have_you_specified_a_workspace" {
count = "${terraform.workspace == "default" ? 1 : 0}"
"ERROR: Select a non-default workspace" = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment