mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
522 B
HCL
19 lines
522 B
HCL
output "azure_devops_sp" {
|
|
value = {
|
|
client_id = azuread_service_principal.azure_devops.application_id
|
|
client_secret = azuread_application_password.azure_devops.value
|
|
}
|
|
sensitive = true
|
|
}
|
|
|
|
output "github_sp" {
|
|
value = {
|
|
tenant_id = data.azurerm_client_config.current.tenant_id
|
|
subscription_id = data.azurerm_client_config.current.subscription_id
|
|
client_id = azuread_service_principal.github.application_id
|
|
client_secret = azuread_application_password.github.value
|
|
}
|
|
sensitive = true
|
|
}
|
|
|