You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you only want to enable SSO by integrating Entra ID as an identity provider for meshStack, you can use this module, but are forced to configure some unrelated parts of replicator and metering.
The following is a minimal config you can apply
provider"azurerm" {
features {}
}
module"meshplatform" {
source="git::https://github.com/meshcloud/terraform-azure-meshplatform.git"sso_enabled=truesso_meshstack_idp_domain="[sso.<name>.meshstack.io](http://sso.<name>.meshstack.io/)"sso_identity_provider_alias="oidc"replicator_enabled=falsemetering_enabled=falsereplicator_assignment_scopes=[]
replicator_custom_role_scope="<id of management group>"metering_assignment_scopes=[]
}
output"meshplatform" {
sensitive=truevalue=module.meshplatform
}
If you only want to enable SSO by integrating Entra ID as an identity provider for meshStack, you can use this module, but are forced to configure some unrelated parts of replicator and metering.
The following is a minimal config you can apply
Expected minimal input
module "meshplatform" {
source = "git::https://github.com/meshcloud/terraform-azure-meshplatform.git"
sso_enabled = true
sso_meshstack_idp_domain = "sso..meshstack.io"
sso_identity_provider_alias = "oidc"
replicator_enabled = false
metering_enabled = false
}
output "meshplatform" {
sensitive = true
value = module.meshplatform
}
The text was updated successfully, but these errors were encountered: