Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit 983b543

Browse files
authored
Merge pull request #153 from GSA-TTS/version-safety
Prevent using known-buggy 1.8.0 cf provider
2 parents 355c646 + 0d230ef commit 983b543

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
cloudfoundry = {
55
source = "cloudfoundry/cloudfoundry"
6-
version = ">= 1.5.0"
6+
version = "~>1.7, !=1.8.0"
77
}
88
}
99
}

sandbox-deploy/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
cloudfoundry = {
55
source = "cloudfoundry/cloudfoundry"
6-
version = "1.6.0"
6+
version = "~>1.7"
77
}
88
}
99
}

0 commit comments

Comments
 (0)