Skip to content

Commit d74c5b6

Browse files
committed
Fix prefix-list module
1 parent e48bfbd commit d74c5b6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0
1+
0.2.1

modules/prefix-list/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This module creates following resources.
1717

1818
| Name | Version |
1919
|------|---------|
20-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.19.0 |
20+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.22.0 |
2121

2222
## Modules
2323

@@ -57,7 +57,7 @@ This module creates following resources.
5757
| <a name="output_id"></a> [id](#output\_id) | The ID of the prefix list. |
5858
| <a name="output_max_entries"></a> [max\_entries](#output\_max\_entries) | The maximum number of entries of this prefix list. |
5959
| <a name="output_name"></a> [name](#output\_name) | The name of the prefix list. |
60-
| <a name="output_owner_id"></a> [owner\_id](#output\_owner\_id) | The ID of the AWS account that owns this prefix list. |
60+
| <a name="output_owner"></a> [owner](#output\_owner) | The ID of the AWS account that owns this prefix list. |
6161
| <a name="output_sharing"></a> [sharing](#output\_sharing) | The configuration for sharing of the VPC prefix list.<br> `status` - An indication of whether the VPC prefix list is shared with other AWS accounts, or was shared with the current account by another AWS account. Sharing is configured through AWS Resource Access Manager (AWS RAM). Values are `NOT_SHARED`, `SHARED_BY_ME` or `SHARED_WITH_ME`.<br> `shares` - The list of resource shares via RAM (Resource Access Manager). |
6262
| <a name="output_version"></a> [version](#output\_version) | Latest version of this prefix list. |
6363
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

modules/prefix-list/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ output "arn" {
88
value = aws_ec2_managed_prefix_list.this.arn
99
}
1010

11-
output "owner_id" {
11+
output "owner" {
1212
description = "The ID of the AWS account that owns this prefix list."
1313
value = aws_ec2_managed_prefix_list.this.owner_id
1414
}

0 commit comments

Comments
 (0)