Skip to content

Commit b6822b8

Browse files
committed
fix: do not prefix release version with v
1 parent a5bccd5 commit b6822b8

File tree

2 files changed

+31
-26
lines changed

2 files changed

+31
-26
lines changed

README.md

Lines changed: 29 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -46,52 +46,56 @@ resource "aws_lb" "this" {
4646
}
4747
```
4848

49+
<!-- prettier-ignore-start -->
4950
<!-- BEGIN_TF_DOCS -->
51+
5052
## Requirements
5153

52-
| Name | Version |
53-
|------|---------|
54-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
55-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.64.2 |
54+
| Name | Version |
55+
| ------------------------------------------------------------------------ | --------- |
56+
| <a name="requirement_terraform"></a> [terraform](#requirement_terraform) | >= 1.0 |
57+
| <a name="requirement_aws"></a> [aws](#requirement_aws) | >= 3.64.2 |
5658

5759
## Providers
5860

59-
| Name | Version |
60-
|------|---------|
61-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 3.70.0 |
61+
| Name | Version |
62+
| ------------------------------------------------ | ------- |
63+
| <a name="provider_aws"></a> [aws](#provider_aws) | 3.70.0 |
6264

6365
## Modules
6466

6567
No modules.
6668

6769
## Resources
6870

69-
| Name | Type |
70-
|------|------|
71+
| Name | Type |
72+
| -------------------------------------------------------------------------------------------------------------------------------- | ----------- |
7173
| [aws_availability_zones.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/availability_zones) | data source |
72-
| [aws_subnet.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/subnet) | data source |
73-
| [aws_subnet_ids.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/subnet_ids) | data source |
74-
| [aws_vpc.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/vpc) | data source |
74+
| [aws_subnet.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/subnet) | data source |
75+
| [aws_subnet_ids.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/subnet_ids) | data source |
76+
| [aws_vpc.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/vpc) | data source |
7577

7678
## Inputs
7779

78-
| Name | Description | Type | Default | Required |
79-
|------|-------------|------|---------|:--------:|
80-
| <a name="input_availability_zones"></a> [availability\_zones](#input\_availability\_zones) | Select subnets only in the given AZs | `set(string)` | `[]` | no |
81-
| <a name="input_vpc_name"></a> [vpc\_name](#input\_vpc\_name) | The name of the VPC | `string` | n/a | yes |
80+
| Name | Description | Type | Default | Required |
81+
| --------------------------------------------------------------------------------------- | ------------------------------------ | ------------- | ------- | :------: |
82+
| <a name="input_availability_zones"></a> [availability_zones](#input_availability_zones) | Select subnets only in the given AZs | `set(string)` | `[]` | no |
83+
| <a name="input_vpc_name"></a> [vpc_name](#input_vpc_name) | The name of the VPC | `string` | n/a | yes |
8284

8385
## Outputs
8486

85-
| Name | Description |
86-
|------|-------------|
87-
| <a name="output_dns_hostnames_enabled"></a> [dns\_hostnames\_enabled](#output\_dns\_hostnames\_enabled) | Indicates if instances launched in this VPC will have public DNS hostnames |
88-
| <a name="output_dns_support_enabled"></a> [dns\_support\_enabled](#output\_dns\_support\_enabled) | Indicates if DNS support is enabled for this VPC |
89-
| <a name="output_private_subnets"></a> [private\_subnets](#output\_private\_subnets) | List of private subnets in this VPC |
90-
| <a name="output_public_subnets"></a> [public\_subnets](#output\_public\_subnets) | List of public subnets in this VPC |
91-
| <a name="output_vpc_arn"></a> [vpc\_arn](#output\_vpc\_arn) | Arn of this VPC |
92-
| <a name="output_vpc_cidr_block"></a> [vpc\_cidr\_block](#output\_vpc\_cidr\_block) | CIDR range for this VPC |
93-
| <a name="output_vpc_id"></a> [vpc\_id](#output\_vpc\_id) | The ID of the VPC |
87+
| Name | Description |
88+
| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
89+
| <a name="output_dns_hostnames_enabled"></a> [dns_hostnames_enabled](#output_dns_hostnames_enabled) | Indicates if instances launched in this VPC will have public DNS hostnames |
90+
| <a name="output_dns_support_enabled"></a> [dns_support_enabled](#output_dns_support_enabled) | Indicates if DNS support is enabled for this VPC |
91+
| <a name="output_private_subnets"></a> [private_subnets](#output_private_subnets) | List of private subnets in this VPC |
92+
| <a name="output_public_subnets"></a> [public_subnets](#output_public_subnets) | List of public subnets in this VPC |
93+
| <a name="output_vpc_arn"></a> [vpc_arn](#output_vpc_arn) | Arn of this VPC |
94+
| <a name="output_vpc_cidr_block"></a> [vpc_cidr_block](#output_vpc_cidr_block) | CIDR range for this VPC |
95+
| <a name="output_vpc_id"></a> [vpc_id](#output_vpc_id) | The ID of the VPC |
96+
9497
<!-- END_TF_DOCS -->
98+
<!-- prettier-ignore-end -->
9599

96100
## Contributing
97101

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
]
3434
}
3535
]
36-
]
36+
],
37+
"tagFormat": "${version}"
3738
},
3839
"scripts": {
3940
"prepare": "husky install"

0 commit comments

Comments
 (0)