terraform-provider-towerops/examples/resources/towerops_agent/resource.tf
Graham McIntire bbe1babdf7
add agent, integration, and maintenance window resources
New Terraform resources: towerops_agent, towerops_integration,
towerops_maintenance_window with full CRUD, docs, and examples.
2026-03-11 14:33:52 -05:00

8 lines
151 B
HCL

resource "towerops_agent" "office" {
name = "Office Poller"
}
output "agent_token" {
value = towerops_agent.office.token
sensitive = true
}