Created
December 18, 2018 19:37
-
-
Save iamkirkbater/c13dc795a3f730dbcfb49ce4e424c28b to your computer and use it in GitHub Desktop.
No default workspaces in terraform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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