generated from deploymenttheory/Template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from deploymenttheory/feat-replace_all_buildings
feat: 6 new buildings
- Loading branch information
Showing
1 changed file
with
16 additions
and
13 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,21 +1,24 @@ | ||
|
||
resource "jamfpro_building" "jamfpro_building_001" { | ||
name = "tf-demo-v2-ONE" | ||
} | ||
|
||
resource "jamfpro_building" "jamfpro_building_003" { | ||
count = 10 | ||
name = "tf-demo-v2-London Wall-${count.index}" | ||
street_address1 = "The McIntosh Tree" | ||
street_address2 = "One Apple Park Way" | ||
city = "Cupertino" | ||
state_province = "California" | ||
zip_postal_code = "95014" | ||
country = "The United States of America" | ||
resource "jamfpro_building" "jamfpro_building_002" { | ||
name = "tf-demo-v2-TWO" | ||
} | ||
|
||
resource "jamfpro_building" "jamfpro_building_003" { | ||
name = "tf-demo-v2-THREE" | ||
} | ||
|
||
resource "jamfpro_building" "jamfpro_building_006" { | ||
name = "tf-demo-v2-Joseph's second House" | ||
resource "jamfpro_building" "jamfpro_building_004" { | ||
name = "tf-demo-v2-FOUR" | ||
} | ||
|
||
resource "jamfpro_building" "jamfpro_building_007" { | ||
name = "tf-demo-v2-Joseph's First House" | ||
resource "jamfpro_building" "jamfpro_building_005" { | ||
name = "tf-demo-v2-FIVE" | ||
} | ||
|
||
resource "jamfpro_building" "jamfpro_building_006" { | ||
name = "tf-demo-v2-SIX" | ||
} |