-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use terraform resource to destroy old workspaces
a bit torn on whether to do this, since it's possibly easier to follow just doing it in the shell script but hey, at least it uncovered a bug: concourse/concourse#7310 Signed-off-by: Aidan Oldershaw <[email protected]>
- Loading branch information
1 parent
64a226a
commit 120b1a1
Showing
2 changed files
with
45 additions
and
28 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
variable "bundle_url" { | ||
type = string | ||
type = string | ||
default = "" | ||
} | ||
|
||
resource "null_resource" "fake_deployment" { | ||
|