mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-14 01:02:09 -05:00
Merge pull request #851 from GSA/more-terraform-fixes
Fix reference to CF org vs. space
This commit is contained in:
@@ -6,9 +6,8 @@ locals {
|
|||||||
delete_recursive_allowed = false
|
delete_recursive_allowed = false
|
||||||
}
|
}
|
||||||
|
|
||||||
data "cloudfoundry_space" "demo" {
|
data "cloudfoundry_org" "org" {
|
||||||
org_name = local.cf_org_name
|
name = local.cf_org_name
|
||||||
name = local.cf_space_name
|
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "cloudfoundry_space" "notify-demo" {
|
resource "cloudfoundry_space" "notify-demo" {
|
||||||
|
|||||||
@@ -7,9 +7,8 @@ locals {
|
|||||||
allow_ssh = false
|
allow_ssh = false
|
||||||
}
|
}
|
||||||
|
|
||||||
data "cloudfoundry_space" "production" {
|
data "cloudfoundry_org" "org" {
|
||||||
org_name = local.cf_org_name
|
name = local.cf_org_name
|
||||||
name = local.cf_space_name
|
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "cloudfoundry_space" "notify-production" {
|
resource "cloudfoundry_space" "notify-production" {
|
||||||
|
|||||||
Reference in New Issue
Block a user