Skip to content

Commit 55f3690

Browse files
terraform-docs: automated action
1 parent 788c0df commit 55f3690

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

modules/alb/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ No modules.
8181

8282
| Name | Description | Type | Default | Required |
8383
|------|-------------|------|---------|:--------:|
84+
| <a name="input_access_logs"></a> [access\_logs](#input\_access\_logs) | (Optional) Access Logs block. | <pre>object({<br> bucket = string<br> enabled = optional(bool, true)<br> prefix = optional(string, null)<br> })</pre> | `null` | no |
85+
| <a name="input_connection_logs"></a> [connection\_logs](#input\_connection\_logs) | (Optional) Connection Logs block. | <pre>object({<br> bucket = string<br> enabled = optional(bool, false)<br> prefix = optional(string, null)<br> })</pre> | `null` | no |
8486
| <a name="input_enable_deletion_protection"></a> [enable\_deletion\_protection](#input\_enable\_deletion\_protection) | (Optional) If true, deletion of the load balancer will be disabled via the AWS API. | `bool` | `false` | no |
8587
| <a name="input_internal"></a> [internal](#input\_internal) | (Optional) If true, the LB will be internal. | `bool` | `false` | no |
8688
| <a name="input_listener_rules"></a> [listener\_rules](#input\_listener\_rules) | Listener rules to associate with the the ALB Listeners. | <pre>map(object({<br> listener = string<br> priority = optional(number)<br> action = list(object({<br> type = string<br> authenticate_oidc = optional(object({<br> authorization_endpoint = string<br> client_id = string<br> client_secret = string<br> issuer = string<br> on_unauthenticated_request = optional(string)<br> scope = optional(string)<br> session_cookie_name = optional(string)<br> token_endpoint = string<br> user_info_endpoint = string<br> }))<br> target_group = optional(string)<br> }))<br> condition = set(object({<br> host_header = optional(object({<br> values = set(string)<br> }))<br> path_pattern = optional(object({<br> values = set(string)<br> }))<br> http_request_method = optional(object({<br> values = set(string)<br> }))<br> }))<br> tags = optional(map(string), {})<br> }))</pre> | `{}` | no |

modules/s3-bucket/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ No modules.
4848
| <a name="input_bucket"></a> [bucket](#input\_bucket) | (Optional, Forces new resource) Name of the bucket. | `string` | `null` | no |
4949
| <a name="input_bucket_force_destroy"></a> [bucket\_force\_destroy](#input\_bucket\_force\_destroy) | (Optional, Default:false) Boolean that indicates all objects (including any locked objects) should be deleted from the bucket when the bucket is destroyed so that the bucket can be destroyed without error. | `bool` | `false` | no |
5050
| <a name="input_bucket_object_lock_enabled"></a> [bucket\_object\_lock\_enabled](#input\_bucket\_object\_lock\_enabled) | (Optional, Forces new resource) Indicates whether this bucket has an Object Lock configuration enabled. | `bool` | `false` | no |
51-
| <a name="input_bucket_policies"></a> [bucket\_policies](#input\_bucket\_policies) | (Optional) Map of bucket policies to attach to the S3 bucket. | <pre>map(object({<br> id = optional(string, null)<br> version = optional(string, null)<br> statements = optional(list(object({<br> actions = optional(set(string), [])<br> effect = optional(string, "Allow")<br> resources = optional(set(string), [])<br> principals = optional(list(object({<br> identifiers = set(string)<br> type = string<br> })), [])<br> })), [])<br> }))</pre> | `{}` | no |
51+
| <a name="input_bucket_policies"></a> [bucket\_policies](#input\_bucket\_policies) | (Optional) Map of bucket policies to attach to the S3 bucket. | <pre>map(object({<br> id = optional(string, null)<br> version = optional(string, null)<br> statements = optional(list(object({<br> sid = optional(string, null)<br> actions = optional(set(string), [])<br> effect = optional(string, "Allow")<br> resources = optional(set(string), [])<br> principals = optional(list(object({<br> identifiers = set(string)<br> type = string<br> })), [])<br> })), [])<br> }))</pre> | `{}` | no |
5252
| <a name="input_tags"></a> [tags](#input\_tags) | (Optional) Map of tags to assign to the bucket. | `map(string)` | `{}` | no |
5353

5454
## Outputs

0 commit comments

Comments
 (0)