I decided to use Amplify module from aws-cdk library, when I want to connect my git repo i go through in-build methods, but I am not able to establish any connection with my Azure git.
What I have been able to find was just piece of code that leads you to the implementation of GitHub / GitLab repo only.
const amplifyApp = new amplify.App(this, "sample-react-app ", {
sourceCodeProvider: new amplify.GitHubSourceCodeProvider({
owner: "[Repository-Owner]",
repository: "[Repository-Name]",
oauthToken: cdk.SecretValue.secretsManager("[Secret-Name]", {
jsonField: "[Secret-Key]",
}),
}),
});
const masterBranch = amplifyApp.addBranch("master");
Do you know any workarounds that can help me to connect my Azure repository through this service?
Thanks in advance!