-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add missing TF version requirements * update version * move provider definition * move provider definitions to top-level * move data source * refactor * delete file
- Loading branch information
Showing
7 changed files
with
44 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
terraform { | ||
required_version = ">= 0.14" | ||
required_version = "< 2.0.0" | ||
required_providers { | ||
cloudfoundry = { | ||
source = "cloudfoundry-community/cloudfoundry" | ||
version = "0.14.0" | ||
version = "< 1.0.0" | ||
} | ||
} | ||
} |
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,7 +1,13 @@ | ||
variable "iaas_stack_name" { | ||
} | ||
|
||
variable "space_id" { | ||
variable "organization_id" { | ||
type = string | ||
description = "Space GUID to deploy test CDN app" | ||
description = "Organization GUID to use for test CDN app" | ||
} | ||
|
||
variable "space_name" { | ||
type = string | ||
description = "Space name to use for test CDN app" | ||
default = "hello-worlds" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
terraform { | ||
required_version = "< 2.0.0" | ||
required_providers { | ||
cloudfoundry = { | ||
source = "cloudfoundry-community/cloudfoundry" | ||
version = "< 1.0.0" | ||
} | ||
|
||
zipper = { | ||
source = "ArthurHlt/zipper" | ||
version = "0.14.0" | ||
} | ||
} | ||
} |
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
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