diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 67de01b104..8f49e7a8d4 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -52,20 +52,6 @@ jobs: name: Run TFLint run: tflint -f compact - # tflint: - # name: tflint - # runs-on: ubuntu-latest - # steps: - # - name: "Checkout" - # uses: actions/checkout@v3 - # - name: tflint - # uses: reviewdog/action-tflint@master - # with: - # github_token: ${{ secrets.GITHUB_TOKEN }} - # fail_on_error: "true" # Optional. Fail action if errors are found - # filter_mode: "nofilter" # Optional. Check all files, not just the diff - - verify_examples: name: Verify examples strategy: diff --git a/README.md b/README.md index 58c90af72f..b2ff7421fb 100644 --- a/README.md +++ b/README.md @@ -495,8 +495,8 @@ We welcome any improvement to the standard module to make the default as secure | [runner\_metadata\_options](#input\_runner\_metadata\_options) | Metadata options for the ec2 runner instances. | `map(any)` |
{
"http_endpoint": "enabled",
"http_put_response_hop_limit": 1,
"http_tokens": "optional"
}
| no | | [runner\_os](#input\_runner\_os) | The EC2 Operating System type to use for action runner instances (linux,windows). | `string` | `"linux"` | no | | [runner\_run\_as](#input\_runner\_run\_as) | Run the GitHub actions agent as user. | `string` | `"ec2-user"` | no | -| [runners\_lambda\_s3\_key](#input\_runners\_lambda\_s3\_key) | S3 key for runners lambda function. Required if using S3 bucket to specify lambdas. | `any` | `null` | no | -| [runners\_lambda\_s3\_object\_version](#input\_runners\_lambda\_s3\_object\_version) | S3 object version for runners lambda function. Useful if S3 versioning is enabled on source bucket. | `any` | `null` | no | +| [runners\_lambda\_s3\_key](#input\_runners\_lambda\_s3\_key) | S3 key for runners lambda function. Required if using S3 bucket to specify lambdas. | `string` | `null` | no | +| [runners\_lambda\_s3\_object\_version](#input\_runners\_lambda\_s3\_object\_version) | S3 object version for runners lambda function. Useful if S3 versioning is enabled on source bucket. | `string` | `null` | no | | [runners\_lambda\_zip](#input\_runners\_lambda\_zip) | File location of the lambda zip file for scaling runners. | `string` | `null` | no | | [runners\_maximum\_count](#input\_runners\_maximum\_count) | The maximum number of runners that will be created. | `number` | `3` | no | | [runners\_scale\_down\_lambda\_timeout](#input\_runners\_scale\_down\_lambda\_timeout) | Time out for the scale down lambda in seconds. | `number` | `60` | no | diff --git a/variables.tf b/variables.tf index ce4422a695..c16d84b474 100644 --- a/variables.tf +++ b/variables.tf @@ -355,11 +355,13 @@ variable "webhook_lambda_apigateway_access_log_settings" { variable "runners_lambda_s3_key" { description = "S3 key for runners lambda function. Required if using S3 bucket to specify lambdas." + type = string default = null } variable "runners_lambda_s3_object_version" { description = "S3 object version for runners lambda function. Useful if S3 versioning is enabled on source bucket." + type = string default = null }