-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat: expose secret manager rotation config #2530
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
941ccd0
7d3c407
1b022b9
44bd33f
48a37db
48e3a4e
a6dbf14
dbcb229
e6320a4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -378,10 +378,18 @@ spec: | |
| description: Enable the Horizontal Pod Autoscaling profile for this cluster. Values are "NONE" and "PERFORMANCE". | ||
| varType: string | ||
| defaultValue: "" | ||
| - name: enable_secret_manager_addon | ||
| description: Enable the Secret Manager add-on for this cluster | ||
| varType: bool | ||
| defaultValue: false | ||
| - name: secret_manager_addon | ||
| description: Configure the Secret Manager add-on for this cluster | ||
| varType: |- | ||
| object({ | ||
| enabled = bool, | ||
| rotation_config = optional(object({ | ||
| enabled = bool, | ||
| rotation_interval = optional(string) | ||
| })) | ||
| }) | ||
|
Comment on lines
+384
to
+390
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| defaultValue: | ||
| enabled: false | ||
| - name: workload_vulnerability_mode | ||
| description: (beta) Sets which mode to use for Protect workload vulnerability scanning feature. Accepted values are DISABLED, BASIC. | ||
| varType: string | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -412,10 +412,16 @@ variable "hpa_profile" { | |
| default = "" | ||
| } | ||
|
|
||
| variable "enable_secret_manager_addon" { | ||
| description = "Enable the Secret Manager add-on for this cluster" | ||
| type = bool | ||
| default = false | ||
| variable "secret_manager_addon" { | ||
| description = "Configure the Secret Manager add-on for this cluster" | ||
| type = object({ | ||
| enabled = bool, | ||
| rotation_config = optional(object({ | ||
| enabled = bool, | ||
| rotation_interval = optional(string) | ||
| })) | ||
|
Comment on lines
419
to
422
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| }) | ||
| default = { enabled = false } | ||
| } | ||
|
Comment on lines
+415
to
425
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The formatting of this variable block is inconsistent with the standard References
|
||
|
|
||
| variable "workload_vulnerability_mode" { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.