Quentin Nambot
12/29/2022, 10:32 AMAdi Polak
12/29/2022, 10:39 AMAriel Shaqed (Scolnicov)
12/29/2022, 10:45 AMAdi Polak
12/29/2022, 10:50 AMQuentin Nambot
12/29/2022, 10:57 AMlakectl
command or lakefs clients
In my company we need to deploy our infrastructure for several customers and we use many AWS accounts in various regions. So creating repositories, branch protection rules or garbage collection policies through the WebUI would require repeating the same actions a lot of time, and is very complicated to evolve
So we use IaC with terraform to setup all our infra.
Since there is no terraform provider currently, I will write python script to setup infra but with terraform it could be way more simple, like
resource "lakefs_repository" {
name = "my-repo"
}
resource "lakefs_repository_garbage_policy" {
repository = lakefs_repository.id
policy = { ... }
}
...
And to create users, with secret keys, link them to group, etc. it could be useful too! 😉
But thanks for the answers, since it is not in the roadmap, I will do what I need using python scripts 👌Ariel Shaqed (Scolnicov)
12/29/2022, 11:05 AMQuentin Nambot
12/29/2022, 2:14 PMTal Sofer
12/29/2022, 3:02 PMQuentin Nambot
12/29/2022, 3:23 PM