Add site import to docs (#90)

* Add site import to docs
* Add user_group import to docs
This commit is contained in:
Chris Clonch
2021-01-11 09:31:47 -05:00
committed by GitHub
parent 96925bedb5
commit afa0ebf2a3
4 changed files with 18 additions and 0 deletions

View File

@@ -28,4 +28,11 @@ resource "unifi_site" "mysite" {
- **id** (String) The ID of the site. - **id** (String) The ID of the site.
- **name** (String) The name of the site. - **name** (String) The name of the site.
## Import
Import is supported using the following syntax:
```shell
# import using the ID
terraform import unifi_site.mysite 5fe6261995fe130013456a36
```

View File

@@ -36,4 +36,11 @@ resource "unifi_user_group" "wifi" {
- **id** (String) The ID of the user group. - **id** (String) The ID of the user group.
## Import
Import is supported using the following syntax:
```shell
# import using the ID
terraform import unifi_user_group.wifi 5fe6261995fe130013456a36
```

View File

@@ -0,0 +1,2 @@
# import using the ID
terraform import unifi_site.mysite 5fe6261995fe130013456a36

View File

@@ -0,0 +1,2 @@
# import using the ID
terraform import unifi_user_group.wifi 5fe6261995fe130013456a36