Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Add status arg desc for the aws_iot_domain_configuration resource #35932

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading