Skip to content

Commit bf7bae8

Browse files
authored
Merge pull request #8 from StateFarmIns/actions
chore: 🤖 fix release workflow
2 parents 9e4d033 + 2793a1a commit bf7bae8

File tree

2 files changed

+35
-35
lines changed

2 files changed

+35
-35
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
- name: Release
2424
env:
2525
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26-
- run: npx semantic-release
26+
run: npx semantic-release

README.md

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -9,55 +9,55 @@ This includes a 24 hour cloudwatch alarm to trigger the lambda regularly in an e
99
<!-- BEGIN_TF_DOCS -->
1010
## Requirements
1111

12-
| Name | Version |
13-
| ------------------------------------------------------------------------- | -------- |
14-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.14 |
15-
| <a name="requirement_archive"></a> [archive](#requirement\_archive) | ~> 2.2 |
16-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | > 4.0 |
17-
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.1.0 |
12+
| Name | Version |
13+
|------|---------|
14+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.14 |
15+
| <a name="requirement_archive"></a> [archive](#requirement\_archive) | ~> 2.2 |
16+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | > 4.0 |
17+
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.1.0 |
1818

1919
## Providers
2020

21-
| Name | Version |
22-
| ------------------------------------------------------------- | ------- |
23-
| <a name="provider_archive"></a> [archive](#provider\_archive) | ~> 2.2 |
24-
| <a name="provider_aws"></a> [aws](#provider\_aws) | > 4.0 |
21+
| Name | Version |
22+
|------|---------|
23+
| <a name="provider_archive"></a> [archive](#provider\_archive) | ~> 2.2 |
24+
| <a name="provider_aws"></a> [aws](#provider\_aws) | > 4.0 |
2525

2626
## Modules
2727

28-
| Name | Source | Version |
29-
| --------------------------------------------- | ------ | ------- |
30-
| <a name="module_iam"></a> [iam](#module\_iam) | ./iam | n/a |
28+
| Name | Source | Version |
29+
|------|--------|---------|
30+
| <a name="module_iam"></a> [iam](#module\_iam) | ./iam | n/a |
3131

3232
## Resources
3333

34-
| Name | Type |
35-
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
36-
| [aws_cloudwatch_event_rule.ip_address_release_lambda_interval](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_event_rule) | resource |
37-
| [aws_cloudwatch_event_target.ip_address_release_lambda_attach](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_event_target) | resource |
38-
| [aws_lambda_function.ip_address_release_lambda](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_function) | resource |
39-
| [aws_lambda_permission.event_permission](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_permission) | resource |
40-
| [archive_file.lambda_source](https://registry.terraform.io/providers/hashicorp/archive/latest/docs/data-sources/file) | data source |
34+
| Name | Type |
35+
|------|------|
36+
| [aws_cloudwatch_event_rule.ip_address_release_lambda_interval](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_event_rule) | resource |
37+
| [aws_cloudwatch_event_target.ip_address_release_lambda_attach](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/cloudwatch_event_target) | resource |
38+
| [aws_lambda_function.ip_address_release_lambda](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_function) | resource |
39+
| [aws_lambda_permission.event_permission](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_permission) | resource |
40+
| [archive_file.lambda_source](https://registry.terraform.io/providers/hashicorp/archive/latest/docs/data-sources/file) | data source |
4141

4242
## Inputs
4343

44-
| Name | Description | Type | Default | Required |
45-
| --------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | -------------- | ------------- | :------: |
46-
| <a name="input_account_name"></a> [account\_name](#input\_account\_name) | The account name for use in alarm description. | `string` | n/a | yes |
47-
| <a name="input_iam_role_arn"></a> [iam\_role\_arn](#input\_iam\_role\_arn) | The ARN of the IAM Role to use (creates a new one if set to `null`) | `string` | `null` | no |
48-
| <a name="input_internet_egress_security_group_id"></a> [internet\_egress\_security\_group\_id](#input\_internet\_egress\_security\_group\_id) | security group id that allows internet outbound calls to port 443 | `string` | n/a | yes |
49-
| <a name="input_kms_key_arn"></a> [kms\_key\_arn](#input\_kms\_key\_arn) | ARN of the key to give to Lambda for access | `string` | n/a | yes |
50-
| <a name="input_lambda_runtime"></a> [lambda\_runtime](#input\_lambda\_runtime) | Python runtime to use for this lambda | `string` | `"python3.9"` | no |
51-
| <a name="input_permissions_boundary_arn"></a> [permissions\_boundary\_arn](#input\_permissions\_boundary\_arn) | The ARN of the policy that is used to set the permissions boundary for the IAM roles. | `string` | `null` | no |
52-
| <a name="input_prefix"></a> [prefix](#input\_prefix) | prefix name, can be a team or product name. E.g., 'SRE' | `string` | n/a | yes |
53-
| <a name="input_subnet_ids"></a> [subnet\_ids](#input\_subnet\_ids) | Subnets that Lambda will be created with in the VPC | `list(string)` | n/a | yes |
54-
| <a name="input_timeout"></a> [timeout](#input\_timeout) | Timeout value for the lambda | `number` | `300` | no |
55-
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | VPC ID to attach the IP Address Release lambda to. | `string` | n/a | yes |
44+
| Name | Description | Type | Default | Required |
45+
|------|-------------|------|---------|:--------:|
46+
| <a name="input_account_name"></a> [account\_name](#input\_account\_name) | The account name for use in alarm description. | `string` | n/a | yes |
47+
| <a name="input_iam_role_arn"></a> [iam\_role\_arn](#input\_iam\_role\_arn) | The ARN of the IAM Role to use (creates a new one if set to `null`) | `string` | `null` | no |
48+
| <a name="input_internet_egress_security_group_id"></a> [internet\_egress\_security\_group\_id](#input\_internet\_egress\_security\_group\_id) | security group id that allows internet outbound calls to port 443 | `string` | n/a | yes |
49+
| <a name="input_kms_key_arn"></a> [kms\_key\_arn](#input\_kms\_key\_arn) | ARN of the key to give to Lambda for access | `string` | n/a | yes |
50+
| <a name="input_lambda_runtime"></a> [lambda\_runtime](#input\_lambda\_runtime) | Python runtime to use for this lambda | `string` | `"python3.9"` | no |
51+
| <a name="input_permissions_boundary_arn"></a> [permissions\_boundary\_arn](#input\_permissions\_boundary\_arn) | The ARN of the policy that is used to set the permissions boundary for the IAM roles. | `string` | `null` | no |
52+
| <a name="input_prefix"></a> [prefix](#input\_prefix) | prefix name, can be a team or product name. E.g., 'SRE' | `string` | n/a | yes |
53+
| <a name="input_subnet_ids"></a> [subnet\_ids](#input\_subnet\_ids) | Subnets that Lambda will be created with in the VPC | `list(string)` | n/a | yes |
54+
| <a name="input_timeout"></a> [timeout](#input\_timeout) | Timeout value for the lambda | `number` | `300` | no |
55+
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | VPC ID to attach the IP Address Release lambda to. | `string` | n/a | yes |
5656

5757
## Outputs
5858

59-
| Name | Description |
60-
| ---------------------------------------------------------------------------- | ------------------------------------------- |
59+
| Name | Description |
60+
|------|-------------|
6161
| <a name="output_iam_role_arn"></a> [iam\_role\_arn](#output\_iam\_role\_arn) | The IAM Role created, or the one passed in. |
6262
<!-- END_TF_DOCS -->
6363

0 commit comments

Comments
 (0)