azuread-users

devops-rob/azuread-users/vault

Terraform Module HCL VAULT

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.

Install
module "azuread-users" {
source = "devops-rob/azuread-users/vault"
version = "0.1.1"
}
plain text: /constructs/tfmod-devops-rob-azuread-users-vault/install.txt
⭐ Source on GitHub 📦 Registry page
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. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an _"AS IS"_ basis,

Inputs (2)
NameTypeDescriptionDefault
policieslist(string)A list of HashiCorp Vault policies to attach to Azure Groups. required
auth_methodstringThe path of the auth method to attach the group alias to. Default to 'token'."token"
Outputs (1)
azure_users_map — Map of Azure AD user display names to Object IDs.
Resources (2)
vault_identity_entityvault_identity_entity_alias
Details
FrameworkTerraform Module
LanguageHCL
Version0.1.1
Cloud VAULT
★ Stars1
Forks1
Total downloads618
Inputs2
Outputs1
Resources2
LicenseApache-2.0
Namespacedevops-rob
Updated