generated from deploymenttheory/Template
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor .gitignore and backend.tf files
- Loading branch information
Showing
3 changed files
with
51 additions
and
28 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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ terraform { | |
cloud { | ||
organization = "deploymenttheory" | ||
workspaces { | ||
tags = ["Jamf Pro"] | ||
tags = ["jamf_pro"] | ||
} | ||
} | ||
} |
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,30 +1,30 @@ | ||
|
||
# resource "jamfpro_building" "jamfpro_building_001" { | ||
# name = "tf-demo-Apple-Park" | ||
# 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_001" { | ||
name = "tf-demo-Apple-Park" | ||
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-jamf-headquarters" | ||
# street_address1 = "100 Washington Ave S" | ||
# street_address2 = "Suite 1100" | ||
# city = "Minneapolis" | ||
# state_province = "Minnesota" | ||
# zip_postal_code = "55401" | ||
# country = "The United States of America" | ||
# } | ||
resource "jamfpro_building" "jamfpro_building_002" { | ||
name = "tf-demo-jamf-headquarters" | ||
street_address1 = "100 Washington Ave S" | ||
street_address2 = "Suite 1100" | ||
city = "Minneapolis" | ||
state_province = "Minnesota" | ||
zip_postal_code = "55401" | ||
country = "The United States of America" | ||
} | ||
|
||
# resource "jamfpro_building" "jamfpro_building_003" { | ||
# name = "tf-demo-Apple-Battersea" | ||
# street_address1 = "Ground Floor, Turbine Hall A, Circus Rd W, Nine Elms" | ||
# street_address2 = "Suite 1100" | ||
# city = "London" | ||
# state_province = "London" | ||
# zip_postal_code = "SW11 8AL" | ||
# country = "United Kingdom" | ||
# } | ||
resource "jamfpro_building" "jamfpro_building_003" { | ||
name = "tf-demo-Apple-Battersea" | ||
street_address1 = "Ground Floor, Turbine Hall A, Circus Rd W, Nine Elms" | ||
street_address2 = "Suite 1100" | ||
city = "London" | ||
state_province = "London" | ||
zip_postal_code = "SW11 8AL" | ||
country = "United Kingdom" | ||
} |