Skip to content

Commit

Permalink
fix: enable vulnerability_alerts argument by default (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
antmelekhin authored Sep 14, 2023
1 parent fc9dae4 commit 75e206f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ No modules.
| <a name="input_license_template"></a> [license\_template](#input\_license\_template) | Use the name of the template without the extension. For example, 'mit' or 'mpl-2.0'. | `string` | `null` | no |
| <a name="input_topics"></a> [topics](#input\_topics) | The list of topics of the repository. | `set(string)` | `[]` | no |
| <a name="input_visibility"></a> [visibility](#input\_visibility) | Visibility of a project. Can be `public`, `private` or `internal` (GHE only). | `string` | `"public"` | no |
| <a name="input_vulnerability_alerts"></a> [vulnerability\_alerts](#input\_vulnerability\_alerts) | Set to `true` to enable security alerts for vulnerable dependencies. | `bool` | `false` | no |
| <a name="input_vulnerability_alerts"></a> [vulnerability\_alerts](#input\_vulnerability\_alerts) | Set to `false` to disable security alerts for vulnerable dependencies. | `bool` | `true` | no |

## Outputs

Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ variable "archive_on_destroy" {
}

variable "vulnerability_alerts" {
description = "Set to `true` to enable security alerts for vulnerable dependencies."
description = "Set to `false` to disable security alerts for vulnerable dependencies."
type = bool
default = false
default = true
}

variable "topics" {
Expand Down

0 comments on commit 75e206f

Please sign in to comment.