Automate access
management, with code
Build secure infrastructure access for
effortless compliance, better security, and happier engineers.
Build secure infrastructure access for
effortless compliance, better security, and happier engineers.
Abbey streamlines data access and frees engineers to focus on core responsibilities, without compromising security and compliance.
resource "abbey_grant_kit" "jediDB_readonly_role" {
name = "Read-only Role for jediDB in Snowflake"
workflow = {
steps = [
{ reviewers = { all_of = ["yoda@rebel.org"] } }
]
}
output = {
location = "github://rebelalliance/jediDB/access.tf"
append = <<-Terraform
resource "snowflake_role_grants" "jediDB_read" {
role_name = data.snowflake_role.read_jediDB.name
users = [.data.abbey.identity.snowflake.username]
}
Terraform
}
}