avinor / terraform-azuread-service-principal

Terraform module to create service principal credentials and assign it access to resources

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Service Principal

Module to create a service principal and assign it certain roles. This used to be terraform-azurerm-kubernetes-service-principal but is now made more generic so it can create any service principals. It will output the application id and password that can be used for input in other modules.

This module requires elevated access to be able to create the application in AzureAD and assign roles to resources. It is therefore not recommended to be run as any CI/CD pipeline, but instead manually before running any automated process. The output can still be used by reading remote state.

Usage

Examples use tau.

module {
    source = "avinor/service-principal/azurerm"
    version = "1.0.0"
}

inputs {
    name = "simple-sp"
    end_date = "2020-01-01T00:00:00Z"

    assignments = [
        {
            scope = "/subscriptions/xxxx/"
            role_definition_name = "Contributor"
        },
    ]
}

About

Terraform module to create service principal credentials and assign it access to resources

License:Apache License 2.0


Languages

Language:HCL 81.4%Language:Go 17.1%Language:Makefile 1.5%