Created
August 3, 2020 17:31
-
-
Save julie-ng/d65bb70094dcc909c857f578c6d567b7 to your computer and use it in GitHub Desktop.
Terraform - Azure Service Principal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
locals { | |
name = "my-workspace" | |
} | |
# RESOURCE GROUP | |
resource "azurerm_resource_group" "workspace_rg" { | |
name = "${local.name}-rg" | |
location = var.location | |
} | |
# SERVICE_PRINCIPAL | |
resource "azuread_application" "arm_client" { | |
name = "${local.name}-sp" | |
depends_on = [ | |
azurerm_resource_group.workspace_rg | |
] | |
} | |
resource "random_password" "arm_secret" { | |
length = 36 | |
special = true | |
min_numeric = 5 | |
min_special = 3 | |
override_special = "-_%@?" | |
} | |
resource "azuread_application_password" "arm_client_secret" { | |
application_object_id = azuread_application.arm_client.object_id | |
value = random_password.arm_secret.result | |
end_date_relative = "8760h" # 1 year | |
} | |
resource "azuread_service_principal" "arm_sp" { | |
application_id = azuread_application.arm_client.application_id | |
} | |
# RBAC - scope service principal to resource group | |
resource "azurerm_role_assignment" "arm_sp" { | |
scope = azurerm_resource_group.workspace_rg.id | |
role_definition_name = "Contributor" | |
principal_id = azuread_service_principal.arm_sp.id | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment