Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/apps/Altinn.AccessManagement/infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,12 @@ module "appsettings" {
]

feature_flags = [
{
name = "AccessManagement.Core.Pipeline.Init"
description = "Specifies if pipelines should run to end-of-stream once in init container."
label = "${lower(var.environment)}-access-management"
value = true
},
{
name = "AccessMgmt.Core.Services.AuthorizedParties.EfEnabled"
description = "(EF) Specifies if the AuthorizedParty service re-write to run on mainly EF-services should be used in dependency injection. Will need recycle of pods to take effect."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ namespace Altinn.AccessMgmt.Core;

public static class AccessMgmtFeatureFlags
{
/// <summary>
/// Ensures that all pipelines has at executed before application starts.
/// </summary>
public const string PipelineInit = "AccessManagement.Core.Pipeline.Init";

/// <summary>
/// Specifies if the register data should streamed from register service to access management database
/// </summary>
Expand Down
Loading