https://github.com/devops-rob/terraform-vault-azuread-users
This module is designed to read all Azure Active Directory (AAD) users in an Azure Tenant, and create matching entities in HashiCorp Vault and entity aliases that tie these all together.
https://github.com/devops-rob/terraform-vault-azuread-users
Last synced: 7 months ago
JSON representation
This module is designed to read all Azure Active Directory (AAD) users in an Azure Tenant, and create matching entities in HashiCorp Vault and entity aliases that tie these all together.
- Host: GitHub
- URL: https://github.com/devops-rob/terraform-vault-azuread-users
- Owner: devops-rob
- License: apache-2.0
- Created: 2021-11-24T20:22:16.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-14T17:19:03.000Z (about 4 years ago)
- Last Synced: 2025-04-02T11:49:09.092Z (10 months ago)
- Language: HCL
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Azure Active Directory Users to Vault Entities
This module is designed to read all Azure Active Directory (AAD) users in an Azure Tenant, and create matching entities in HashiCorp Vault and entity aliases that tie these all together.
## Example Usage
```hcl
terraform {
required_providers {
azuread = {
source = "hashicorp/azuread"
version = "~> 2.10.0"
}
}
}
provider "vault" {
address = "http://localhost:8200"
token = var.vault_token
}
provider "azuread" {}
variable "vault_token" {}
module "users" {
source = "../"
}
```
## License
Licensed under the Apache License, Version 2.0 (the "License").
You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0).
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an _"AS IS"_ basis, without WARRANTIES or conditions of any kind, either express or implied.
See the License for the specific language governing permissions and limitations under the License.