Skip to content

Commit

Permalink
Merge pull request #35932 from acwwat/d-aws_iot_domain_configuration-…
Browse files Browse the repository at this point in the history
…add_status_arg_desc

docs: Add status arg desc for  the aws_iot_domain_configuration resource
  • Loading branch information
jar-b authored Feb 26, 2024
2 parents 1517ad7 + d01f4fb commit 8b43d47
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions website/docs/r/iot_domain_configuration.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,26 @@ resource "aws_iot_domain_configuration" "iot" {

## Argument Reference

* `authorizer_config` - (Optional) An object that specifies the authorization service for a domain. See below.
* `authorizer_config` - (Optional) An object that specifies the authorization service for a domain. See the [`authorizer_config` Block](#authorizer_config-block) below for details.
* `domain_name` - (Optional) Fully-qualified domain name.
* `name` - (Required) The name of the domain configuration. This value must be unique to a region.
* `server_certificate_arns` - (Optional) The ARNs of the certificates that IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for Amazon Web Services-managed domains. When using a custom `domain_name`, the cert must include it.
* `service_type` - (Optional) The type of service delivered by the endpoint. Note: Amazon Web Services IoT Core currently supports only the `DATA` service type.
* `status` - (Optional) The status to which the domain configuration should be set. Valid values are `ENABLED` and `DISABLED`.
* `tags` - (Optional) Map of tags to assign to this resource. If configured with a provider [`default_tags` configuration block](https://www.terraform.io/docs/providers/aws/index.html#default_tags-configuration-block) present, tags with matching keys will overwrite those defined at the provider-level.
* `tls_config` - (Optional) An object that specifies the TLS configuration for a domain. See below.
* `tls_config` - (Optional) An object that specifies the TLS configuration for a domain. See the [`tls_config` Block](#tls_config-block) below for details.
* `validation_certificate_arn` - (Optional) The certificate used to validate the server certificate and prove domain name ownership. This certificate must be signed by a public certificate authority. This value is not required for Amazon Web Services-managed domains.

### authorizer_config
### `authorizer_config` Block

The `authorizer_config` configuration block supports the following arguments:

* `allow_authorizer_override` - (Optional) A Boolean that specifies whether the domain configuration's authorization service can be overridden.
* `default_authorizer_name` - (Optional) The name of the authorization service for a domain configuration.

### tls_config
### `tls_config` Block

The `tls_config` configuration block supports the following arguments:

* `security_policy` - (Optional) The security policy for a domain configuration.

Expand Down

0 comments on commit 8b43d47

Please sign in to comment.