Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
baolsen committed Nov 27, 2024
1 parent de7cd2b commit 63cb0ff
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Please note we have a code of conduct, please follow it in all your interactions
1. Update the README.md with details of changes including example hcl blocks and [example files](./examples) if appropriate.
2. Add appropriate tests.
3. Run pre-commit hooks `pre-commit run -a`.
4. Once all outstanding comments and checklist items have been addressed, your contribution will be merged!
4. Once all outstanding comments and checklist items have been addressed, your contribution will be merged!

Merged PRs will be included in the next release.
Merged PRs will be included in the next release.

## Checklists for contributions

Expand Down
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"recommendations": [
"ms-vscode-remote.remote-containers"
]
}
}
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ module "github_runner" {
| <a name="input_iam_role_name"></a> [iam\_role\_name](#input\_iam\_role\_name) | Name of the IAM role to be used, if one is not given a role will be created | `string` | `null` | no |
| <a name="input_iam_role_permissions_boundary"></a> [iam\_role\_permissions\_boundary](#input\_iam\_role\_permissions\_boundary) | ARN of the policy that is used to set the permissions boundary for the IAM service role | `string` | `null` | no |
| <a name="input_iam_role_policies"></a> [iam\_role\_policies](#input\_iam\_role\_policies) | Map of IAM role policy ARNs to attach to the IAM role | `map(string)` | `{}` | no |
| <a name="input_kms_key_id"></a> [kms\_key\_id](#input\_kms\_key\_id) | The AWS KMS key to be used | `any` | `null` | no |
| <a name="input_kms_key_id"></a> [kms\_key\_id](#input\_kms\_key\_id) | The AWS KMS key to be used | `string` | `null` | no |
| <a name="input_name"></a> [name](#input\_name) | Created resources will be named with this. | `string` | n/a | yes |
| <a name="input_s3_logs_location"></a> [s3\_logs\_location](#input\_s3\_logs\_location) | Value of the S3 bucket to store logs in, if left blank a bucket will be created | `string` | `null` | no |
| <a name="input_security_group_ids"></a> [security\_group\_ids](#input\_security\_group\_ids) | The list of Security Group IDs for AWS Codebuild to launch ephemeral EC2 instances in. | `list(string)` | `[]` | no |
Expand All @@ -236,7 +236,6 @@ No modules.
|------|-------------|
| <a name="output_codebuild_project"></a> [codebuild\_project](#output\_codebuild\_project) | Name and ARN of codebuild project, to be used when running GitHub Actions |
| <a name="output_codebuild_role"></a> [codebuild\_role](#output\_codebuild\_role) | Name and ARN of codebuild role, to be used when running GitHub Actions |
| <a name="output_custom_kms_key"></a> [custom\_kms\_key](#output\_custom\_kms\_key) | n/a |
| <a name="output_ecr_repository"></a> [ecr\_repository](#output\_ecr\_repository) | Name and ARN of ECR repository, to be used when to push custom docker images for the codebuiild project |

----
Expand Down
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ output "ecr_repository" {
arn = try(aws_ecr_repository.this[0].arn, null)
}
description = "Name and ARN of ECR repository, to be used when to push custom docker images for the codebuiild project"
}
}

0 comments on commit 63cb0ff

Please sign in to comment.