@aws-accelerator/config
    Preparing search index...

    ReplacementsConfig / ParameterReplacementConfig

    Fixed replacement value to apply throughout config files. Loaded from SSM parameters in the management account in the HOME_REGION.

    These SSM Parameters must exist with non-null values before they are added to the replacements-config.yaml file.

    globalReplacements:
    - key: FndPrefix
    type: 'SSM'
    path: /accelerator/replacements/FndPrefix
    - key: BudgetEmail
    type: 'SSM'
    path: /accelerator/replacements/BudgetEmail
    - key: ProtectTagKey
    type: 'SSM'
    path: /accelerator/replacements/ProtectTagKey
    - key: ProtectTagValue
    type: 'SSM'
    path: /accelerator/replacements/ProtectTagValue
    - key: ALLOWED_CORPORATE_CIDRS
    type: 'StringList'
    value:
    - 10.0.1.0/24
    - 10.0.2.0/24
    - key: ALLOWED_PRINCIPAL_ARN
    type: 'String'
    value: arn:aws:iam::*:role/AWSA*
    - key: MaxPasswordAge
    type: 'Number'
    value: 90
    interface IParameterReplacementV2 {
        key: string;
        path?: string;
        type: ParameterReplacementType;
        value?: string | number | string[];
    }
    Index

    Properties

    Properties

    key: string

    Key of the replacement placeholder

    path?: string

    Path of the SSM Parameter containing the value to replace

    Type of the global parameters

    value?: string | number | string[]

    Value of the parameter if type is string or array