Hi guys I'm faced with a problem to setup rancher...
# rke2
a
Hi guys I'm faced with a problem to setup rancher etcd backups on S3 bucket. I'm using terraform to setup this:
Copy code
resource "rancher2_etcd_backup" "backup" {
  provider = rancher2.admin

  name = "etcd-bkp-${var.cluster_name}"
  cluster_id = rancher2_cluster_v2.cluster.cluster_v1_id

  backup_config {
    enabled = true
    interval_hours = 8
    retention = 20
    s3_backup_config {
      bucket_name = var.bucket_etcd_bkp_name
      endpoint = data.aws_s3_bucket.selected.bucket_domain_name
      folder = "/${var.cluster_name}-etcd-backup"
      region = data.aws_region.current.name
    }
  }
}
This code ran without any problems but when I check in UI Rancher, inside cluster. I couldn´t find the setup. Backup Sanapshot to S3 is Disable Can you help me please?