Skip to content

Commit

Permalink
feat: 6 new buildings
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoeker12 committed Nov 1, 2024
1 parent 3bf31a1 commit a0a99fe
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions workload/terraform/jamfpro/buildings.tf
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"
}

0 comments on commit a0a99fe

Please sign in to comment.