* docs: add examples and recreate TF documentation * update readme * add information about experimental support of firewall zones
9 lines
287 B
HCL
9 lines
287 B
HCL
resource "unifi_setting_country" "example" {
|
|
# Set the country code using ISO 3166-1 alpha-2 format
|
|
# This example sets the country to United States
|
|
code = "US"
|
|
|
|
# Specify the site (optional, defaults to site configured in provider, otherwise "default")
|
|
# site = "default"
|
|
}
|