Created
October 14, 2020 13:25
-
-
Save goodviber/e2f55d9eb8cbb5ed27085d6ebd74c95a to your computer and use it in GitHub Desktop.
Terraform 0.13.4
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
provider "cloudfoundry" { | |
api_url = var.api_url | |
user = var.user | |
password = var.password | |
} | |
terraform { | |
required_version = ">= 0.13.4" | |
required_providers { | |
cloudfoundry = { | |
source = "cloudfoundry-community/cloudfoundry" | |
version = "0.12.6" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment