Skip to content

Commit

Permalink
revert var.github_webhook_validator_github_token_ssm_value back to de…
Browse files Browse the repository at this point in the history
…fault ""
  • Loading branch information
marshall7m committed Jun 19, 2022
1 parent 9e9a3c2 commit 8036e5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ Requirements below are needed in order to run `terraform apply` within this modu
| <a name="input_github_webhook_validator_github_token_ssm_description"></a> [github\_webhook\_validator\_github\_token\_ssm\_description](#input\_github\_webhook\_validator\_github\_token\_ssm\_description) | Github token SSM parameter description | `string` | `"Github token used by Github Webhook Validator Lambda Function"` | no |
| <a name="input_github_webhook_validator_github_token_ssm_key"></a> [github\_webhook\_validator\_github\_token\_ssm\_key](#input\_github\_webhook\_validator\_github\_token\_ssm\_key) | AWS SSM Parameter Store key for sensitive Github personal token used by the Github Webhook Validator Lambda Function | `string` | `null` | no |
| <a name="input_github_webhook_validator_github_token_ssm_tags"></a> [github\_webhook\_validator\_github\_token\_ssm\_tags](#input\_github\_webhook\_validator\_github\_token\_ssm\_tags) | Tags for Github token SSM parameter | `map(string)` | `{}` | no |
| <a name="input_github_webhook_validator_github_token_ssm_value"></a> [github\_webhook\_validator\_github\_token\_ssm\_value](#input\_github\_webhook\_validator\_github\_token\_ssm\_value) | Registered Github webhook token associated with the Github provider. The token will be used by the Github Webhook Validator Lambda Function.<br>If not provided, module looks for pre-existing SSM parameter via `var.github_webhook_validator_github_token_ssm_key`".<br>GitHub token needs the `repo` permission to access the private repo. (see more about OAuth scopes here: https://docs.github.com/en/developers/apps/building-oauth-apps/scopes-for-oauth-apps) | `string` | `null` | no |
| <a name="input_github_webhook_validator_github_token_ssm_value"></a> [github\_webhook\_validator\_github\_token\_ssm\_value](#input\_github\_webhook\_validator\_github\_token\_ssm\_value) | Registered Github webhook token associated with the Github provider. The token will be used by the Github Webhook Validator Lambda Function.<br>If not provided, module looks for pre-existing SSM parameter via `var.github_webhook_validator_github_token_ssm_key`".<br>GitHub token needs the `repo` permission to access the private repo. (see more about OAuth scopes here: https://docs.github.com/en/developers/apps/building-oauth-apps/scopes-for-oauth-apps) | `string` | `""` | no |
| <a name="input_lambda_approval_request_vpc_config"></a> [lambda\_approval\_request\_vpc\_config](#input\_lambda\_approval\_request\_vpc\_config) | VPC configuration for Lambda approval request function.<br>Ensure that the configuration allows for outgoing HTTPS traffic. | <pre>object({<br> subnet_ids = list(string)<br> security_group_ids = list(string)<br> })</pre> | `null` | no |
| <a name="input_lambda_approval_response_vpc_config"></a> [lambda\_approval\_response\_vpc\_config](#input\_lambda\_approval\_response\_vpc\_config) | VPC configuration for Lambda approval response function.<br>Ensure that the configuration allows for outgoing HTTPS traffic. | <pre>object({<br> subnet_ids = list(string)<br> security_group_ids = list(string)<br> })</pre> | `null` | no |
| <a name="input_lambda_trigger_sf_vpc_config"></a> [lambda\_trigger\_sf\_vpc\_config](#input\_lambda\_trigger\_sf\_vpc\_config) | VPC configuration for Lambda trigger\_sf function.<br>Ensure that the configuration allows for outgoing HTTPS traffic. | <pre>object({<br> subnet_ids = list(string)<br> security_group_ids = list(string)<br> })</pre> | `null` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ If not provided, module looks for pre-existing SSM parameter via `var.github_web
GitHub token needs the `repo` permission to access the private repo. (see more about OAuth scopes here: https://docs.github.com/en/developers/apps/building-oauth-apps/scopes-for-oauth-apps)
EOF
type = string
default = null
default = ""
sensitive = true
}

Expand Down

0 comments on commit 8036e5e

Please sign in to comment.