diff --git a/examples/main.tf b/examples/main.tf index b035f7f..5d2fcc0 100644 --- a/examples/main.tf +++ b/examples/main.tf @@ -16,6 +16,12 @@ provider "towerops" { token = var.towerops_api_token } +# Manage organization settings +resource "towerops_organization" "main" { + name = "My Organization" + use_sites = true +} + # Create a site resource "towerops_site" "main_office" { name = "Main Office" diff --git a/examples/resources/towerops_organization/resource.tf b/examples/resources/towerops_organization/resource.tf new file mode 100644 index 0000000..3ba78fd --- /dev/null +++ b/examples/resources/towerops_organization/resource.tf @@ -0,0 +1,4 @@ +resource "towerops_organization" "example" { + name = "ACME Corporation" + use_sites = true +}