https://github.com/keeper-security/terraform-provider-keeper
https://github.com/keeper-security/terraform-provider-keeper
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/keeper-security/terraform-provider-keeper
- Owner: Keeper-Security
- License: mit
- Created: 2023-11-02T17:20:48.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-09-14T01:32:38.000Z (9 months ago)
- Last Synced: 2025-09-14T03:24:59.664Z (9 months ago)
- Language: Go
- Size: 299 KB
- Stars: 1
- Watchers: 7
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README

# Keeper Terraform Provider (Administration)
[](https://registry.terraform.io/providers/Keeper-Security/keeper/latest/docs)
Manage Keeper administration as code with Terraform: users, teams (groups), roles, and role enforcements/policies.
---
## Features
- **Users**: Look up and manage user entries.
- **Teams / Groups**: Work with teams and memberships.
- **Roles & Enforcements**: Define and apply role enforcements/policies.
> Full docs are in the Terraform Registry for the `keeper` provider.
---
## Requirements
- Terraform (latest stable recommended)
- Keeper admin access (sufficient privileges to manage users/teams/roles)
- A Keeper provider configuration file (JSON) accessible via `config_path` (see below). The Registry’s provider page shows `config_path` usage.
---
## Installation
Declare the provider in your Terraform configuration:
```hcl
terraform {
required_providers {
keeper = {
source = "Keeper-Security/keeper"
# pin as needed, e.g. version = "~> 1.2"
}
}
}