terraform-provider-towerops/internal/provider
Graham McIntire 96bb767c83
feat: add SNMP community string support to organization resource
- Add snmp_community field to Organization struct (client.go)
- Add snmp_community attribute to organization resource schema
- Mark as Optional and Sensitive in Terraform
- Include in Create and Update operations
- Only settable by organization owners (enforced by API)

Example usage:
  resource "towerops_organization" "main" {
    name           = "My Organization"
    use_sites      = true
    snmp_community = "public"
  }
2026-03-10 13:59:54 -05:00
..
client.go feat: add SNMP community string support to organization resource 2026-03-10 13:59:54 -05:00
client_test.go feat: allow setting organization name via Terraform 2026-03-10 13:32:56 -05:00
device_resource.go Adding a device without an org id now works 2026-02-06 13:37:05 -06:00
device_resource_test.go feat: allow setting organization name via Terraform 2026-03-10 13:32:56 -05:00
organization_resource.go feat: add SNMP community string support to organization resource 2026-03-10 13:59:54 -05:00
organization_resource_test.go feat: allow setting organization name via Terraform 2026-03-10 13:32:56 -05:00
provider.go feat: allow setting organization name via Terraform 2026-03-10 13:32:56 -05:00
provider_test.go allow creating entities when they dont exist 2026-01-29 13:25:00 -06:00
site_resource.go allow creating entities when they dont exist 2026-01-29 13:25:00 -06:00
site_resource_test.go allow creating entities when they dont exist 2026-01-29 13:25:00 -06:00