Skip to content

Commit 4dda026

Browse files
committed
linting
1 parent 1e3e53c commit 4dda026

12 files changed

Lines changed: 67 additions & 1 deletion

internal/services/web/app_service_custom_hostname_binding_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func resourceAppServiceCustomHostnameBindingRead(d *pluginsdk.ResourceData, meta
163163

164164
if model := resp.Model; model != nil {
165165
if props := model.Properties; props != nil {
166-
d.Set("ssl_state", props.SslState)
166+
d.Set("ssl_state", pointer.FromEnum(props.SslState))
167167
d.Set("thumbprint", props.Thumbprint)
168168
d.Set("virtual_ip", props.VirtualIP)
169169
}

website/docs/d/app_service_certificate.html.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,9 @@ The following attributes are exported:
5757
The `timeouts` block allows you to specify [timeouts](https://developer.hashicorp.com/terraform/language/resources/configure#define-operation-timeouts) for certain actions:
5858

5959
* `read` - (Defaults to 5 minutes) Used when retrieving the App Service Certificate.
60+
61+
## API Providers
62+
<!-- This section is generated, changes will be overwritten -->
63+
This data source uses the following Azure API Providers:
64+
65+
* `Microsoft.Web` - 2023-12-01

website/docs/d/app_service_certificate_order.html.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,9 @@ output "certificate_order_id" {
8282
The `timeouts` block allows you to specify [timeouts](https://developer.hashicorp.com/terraform/language/resources/configure#define-operation-timeouts) for certain actions:
8383

8484
* `read` - (Defaults to 5 minutes) Used when retrieving the App Service Certificate Order.
85+
86+
## API Providers
87+
<!-- This section is generated, changes will be overwritten -->
88+
This data source uses the following Azure API Providers:
89+
90+
* `Microsoft.CertificateRegistration` - 2023-12-01

website/docs/d/function_app_host_keys.html.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,9 @@ In addition to the Arguments listed above - the following Attributes are exporte
5252
The `timeouts` block allows you to specify [timeouts](https://developer.hashicorp.com/terraform/language/resources/configure#define-operation-timeouts) for certain actions:
5353

5454
* `read` - (Defaults to 5 minutes) Used when retrieving the Function App Host Keys
55+
56+
## API Providers
57+
<!-- This section is generated, changes will be overwritten -->
58+
This data source uses the following Azure API Providers:
59+
60+
* `Microsoft.Web` - 2023-12-01

website/docs/r/app_service_certificate.html.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,9 @@ App Service Certificates can be imported using the `resource id`, e.g.
106106
```shell
107107
terraform import azurerm_app_service_certificate.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Web/certificates/certificate1
108108
```
109+
110+
## API Providers
111+
<!-- This section is generated, changes will be overwritten -->
112+
This resource uses the following Azure API Providers:
113+
114+
* `Microsoft.Web` - 2023-12-01

website/docs/r/app_service_certificate_binding.html.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,9 @@ App Service Certificate Bindings can be imported using the `hostname_binding_id`
120120
```shell
121121
terraform import azurerm_app_service_certificate_binding.example "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Web/sites/instance1/hostNameBindings/mywebsite.com|/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Web/certificates/mywebsite.com"
122122
```
123+
124+
## API Providers
125+
<!-- This section is generated, changes will be overwritten -->
126+
This resource uses the following Azure API Providers:
127+
128+
* `Microsoft.Web` - 2023-12-01

website/docs/r/app_service_certificate_order.html.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,9 @@ App Service Certificate Orders can be imported using the `resource id`, e.g.
106106
```shell
107107
terraform import azurerm_app_service_certificate_order.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.CertificateRegistration/certificateOrders/certificateorder1
108108
```
109+
110+
## API Providers
111+
<!-- This section is generated, changes will be overwritten -->
112+
This resource uses the following Azure API Providers:
113+
114+
* `Microsoft.CertificateRegistration` - 2023-12-01

website/docs/r/app_service_custom_hostname_binding.html.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,9 @@ App Service Custom Hostname Bindings can be imported using the `resource id`, e.
9393
```shell
9494
terraform import azurerm_app_service_custom_hostname_binding.mywebsite /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Web/sites/instance1/hostNameBindings/mywebsite.com
9595
```
96+
97+
## API Providers
98+
<!-- This section is generated, changes will be overwritten -->
99+
This resource uses the following Azure API Providers:
100+
101+
* `Microsoft.Web` - 2023-12-01

website/docs/r/app_service_managed_certificate.html.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,9 @@ App Service Managed Certificates can be imported using the `resource id`, e.g.
132132
```shell
133133
terraform import azurerm_app_service_managed_certificate.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.Web/certificates/customhost.contoso.com
134134
```
135+
136+
## API Providers
137+
<!-- This section is generated, changes will be overwritten -->
138+
This resource uses the following Azure API Providers:
139+
140+
* `Microsoft.Web` - 2023-12-01

website/docs/r/app_service_slot_custom_hostname_binding.html.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,9 @@ App Service Custom Hostname Bindings can be imported using the `resource id`, e.
8585
```shell
8686
terraform import azurerm_app_service_slot_custom_hostname_binding.mywebsite /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Web/sites/instance1/slots/staging/hostNameBindings/mywebsite.com
8787
```
88+
89+
## API Providers
90+
<!-- This section is generated, changes will be overwritten -->
91+
This resource uses the following Azure API Providers:
92+
93+
* `Microsoft.Web` - 2023-12-01

0 commit comments

Comments
 (0)