Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add encryption settings for AuthConfig #24822

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,10 @@
"httpSettings": {
"$ref": "#/definitions/HttpSettings",
"description": "The configuration settings of the HTTP requests for authentication and authorization requests made against ContainerApp Service Authentication/Authorization."
},
"encryptionSettings": {
"$ref": "#/definitions/EncryptionSettings",
"description": "The configuration settings of the secrets references of encryption key and signing key for ContainerApp Service Authentication/Authorization."
}
},
"x-ms-client-flatten": true
Expand Down Expand Up @@ -354,6 +358,20 @@
}
}
},
"EncryptionSettings": {
"description": "The configuration settings of the secrets references of encryption key and signing key for ContainerApp Service Authentication/Authorization.",
"type": "object",
"properties": {
"containerAppAuthEncryptionSecretName": {
"description": "The secret name which is referenced for EncryptionKey.",
"type": "string"
},
"containerAppAuthSigningSecretName": {
"description": "The secret name which is referenced for SigningKey.",
"type": "string"
}
}
},
"HttpSettingsRoutes": {
"description": "The configuration settings of the paths HTTP requests.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
"appSecretSettingName": "facebook-secret"
}
}
},
"encryptionSettings": {
"containerAppAuthEncryptionSecretName": "testEncryptionSecretName",
"containerAppAuthSigningSecretName": "testSigningSecretName"
}
}
}
Expand All @@ -45,6 +49,10 @@
"appSecretSettingName": "facebook-secret"
}
}
},
"encryptionSettings": {
"containerAppAuthEncryptionSecretName": "testEncryptionSecretName",
"containerAppAuthSigningSecretName": "testSigningSecretName"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
"appSecretSettingName": "facebook-secret"
}
}
},
"encryptionSettings": {
"containerAppAuthEncryptionSecretName": "testEncryptionSecretName",
"containerAppAuthSigningSecretName": "testSigningSecretName"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
"appSecretSettingName": "facebook-secret"
}
}
},
"encryptionSettings": {
"containerAppAuthEncryptionSecretName": "testEncryptionSecretName",
"containerAppAuthSigningSecretName": "testSigningSecretName"
}
}
}
Expand Down