Skip to content

Commit

Permalink
Add option to use Velero for creating snapshot backups of EBS volumes (
Browse files Browse the repository at this point in the history
  • Loading branch information
avnes authored Oct 19, 2023
1 parent df0765f commit ccac3f7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions compute/k8s-services/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,7 @@ module "velero_flux_manifests" {
image_tag = var.velero_image_tag
plugin_for_aws_version = var.velero_plugin_for_aws_version
plugin_for_csi_version = var.velero_plugin_for_csi_version
snapshots_enabled = var.velero_snapshots_enabled
overwrite_on_create = var.fluxcd_bootstrap_overwrite_on_create
gitops_apps_repo_url = local.fluxcd_apps_repo_url
gitops_apps_repo_branch = var.fluxcd_apps_repo_branch
Expand Down
7 changes: 7 additions & 0 deletions compute/k8s-services/vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1080,6 +1080,13 @@ variable "velero_plugin_for_csi_version" {
}
}

variable "velero_snapshots_enabled" {
type = bool
default = false
description = "Should Velero use snapshot backups?"

}

variable "kyverno_chart_version" {
type = string
default = "v2.4.1"
Expand Down

0 comments on commit ccac3f7

Please sign in to comment.