Bump tfplugindocs

This commit is contained in:
Paul Tyng
2021-01-11 09:34:35 -05:00
parent afa0ebf2a3
commit bbabc7bdb6
15 changed files with 28 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_ap_group Data Source - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -16,6 +17,7 @@ data "unifi_ap_group" "default" {
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Optional

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_radius_profile Data Source - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -11,6 +12,7 @@ description: |-
<!-- schema generated by tfplugindocs -->
## Schema
### Optional

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_user_group Data Source - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -11,6 +12,7 @@ description: |-
<!-- schema generated by tfplugindocs -->
## Schema
### Optional

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_wlan_group Data Source - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -14,6 +15,7 @@ Please note that WLAN Groups are deprecated in v6 of the controller.
<!-- schema generated by tfplugindocs -->
## Schema
### Optional

View File

@@ -26,6 +26,7 @@ provider "unifi" {
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Optional

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_firewall_group Resource - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -24,6 +25,7 @@ resource "unifi_firewall_group" "can_print" {
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Required

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_firewall_rule Resource - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -29,6 +30,7 @@ resource "unifi_firewall_rule" "drop_all" {
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Required

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_network Resource - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -40,6 +41,7 @@ resource "unifi_network" "wan" {
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Required

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_port_forward Resource - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -11,6 +12,7 @@ description: |-
<!-- schema generated by tfplugindocs -->
## Schema
### Optional

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_site Resource - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -17,6 +18,7 @@ resource "unifi_site" "mysite" {
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Required

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_user Resource - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -25,6 +26,7 @@ resource "unifi_user" "test" {
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Required

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_user_group Resource - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -20,6 +21,7 @@ resource "unifi_user_group" "wifi" {
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Required

View File

@@ -1,4 +1,5 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_wlan Resource - terraform-provider-unifi"
subcategory: ""
description: |-
@@ -28,6 +29,7 @@ resource "unifi_wlan" "wifi" {
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Required

2
go.mod
View File

@@ -21,7 +21,7 @@ require (
github.com/hashicorp/go-version v1.2.1
github.com/hashicorp/terraform-exec v0.11.0 // indirect
github.com/hashicorp/terraform-json v0.6.0 // indirect
github.com/hashicorp/terraform-plugin-docs v0.3.0
github.com/hashicorp/terraform-plugin-docs v0.3.1-0.20210107204619-bf524a84dc08
github.com/hashicorp/terraform-plugin-sdk/v2 v2.0.5-0.20201016174159-3a1c6c51f716
github.com/hashicorp/yamux v0.0.0-20200609203250-aecfd211c9ce // indirect
github.com/mattn/go-colorable v0.1.8 // indirect

2
go.sum
View File

@@ -247,6 +247,8 @@ github.com/hashicorp/terraform-json v0.6.0 h1:nMTj4t9ysC7xJ72rvVsDqhUccvbUINrjhP
github.com/hashicorp/terraform-json v0.6.0/go.mod h1:eAbqb4w0pSlRmdvl8fOyHAi/+8jnkVYN28gJkSJrLhU=
github.com/hashicorp/terraform-plugin-docs v0.3.0 h1:q9qVsL8LYLVDRhS5nqxubCzWtRZ61Y6GLlphk9YIqR0=
github.com/hashicorp/terraform-plugin-docs v0.3.0/go.mod h1:4jopztPjeyZAr51wPzX4b8Ld8bFQKQ9dbF40JbCQIts=
github.com/hashicorp/terraform-plugin-docs v0.3.1-0.20210107204619-bf524a84dc08 h1:gVEbALFfOCsAscHV9/Xz188pfdG32/GzR4O5RVcwjUw=
github.com/hashicorp/terraform-plugin-docs v0.3.1-0.20210107204619-bf524a84dc08/go.mod h1:4jopztPjeyZAr51wPzX4b8Ld8bFQKQ9dbF40JbCQIts=
github.com/hashicorp/terraform-plugin-sdk/v2 v2.0.5-0.20201016174159-3a1c6c51f716 h1:c9UOoIrZ4LKF0LJQB0cORIjLt3y9yJGHBa88PaoEqR8=
github.com/hashicorp/terraform-plugin-sdk/v2 v2.0.5-0.20201016174159-3a1c6c51f716/go.mod h1:GP0lmw4Y+XV1OfTmi/hK75t5KWGGzoOzEgUBPGZ6Wq4=
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb/go.mod h1:+NfK9FKeTrX5uv1uIXGdwYDTeHna2qgaIlx54MXqjAM=