├── .pipelines ├── azure-pipelines.yml └── pr.yaml ├── LICENSE ├── README.md ├── configurations ├── dev-aca.json ├── dev-apim.json ├── dev.bicepparam ├── dev.json ├── infra-test.json ├── prod.json └── test.json ├── infrastructure ├── aca.bicep ├── apim.bicep ├── core.bicep ├── externalResources.bicep └── main.bicep ├── modules └── private-endpoint.bicep ├── resources └── lambdaStoreSwagger.json └── tests └── infra-pipeline.tests.ps1 /.pipelines/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/.pipelines/azure-pipelines.yml -------------------------------------------------------------------------------- /.pipelines/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/.pipelines/pr.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # lambda-toys-api-infrastructure -------------------------------------------------------------------------------- /configurations/dev-aca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/configurations/dev-aca.json -------------------------------------------------------------------------------- /configurations/dev-apim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/configurations/dev-apim.json -------------------------------------------------------------------------------- /configurations/dev.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/configurations/dev.bicepparam -------------------------------------------------------------------------------- /configurations/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/configurations/dev.json -------------------------------------------------------------------------------- /configurations/infra-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/configurations/infra-test.json -------------------------------------------------------------------------------- /configurations/prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/configurations/prod.json -------------------------------------------------------------------------------- /configurations/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/configurations/test.json -------------------------------------------------------------------------------- /infrastructure/aca.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/infrastructure/aca.bicep -------------------------------------------------------------------------------- /infrastructure/apim.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/infrastructure/apim.bicep -------------------------------------------------------------------------------- /infrastructure/core.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/infrastructure/core.bicep -------------------------------------------------------------------------------- /infrastructure/externalResources.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/infrastructure/externalResources.bicep -------------------------------------------------------------------------------- /infrastructure/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/infrastructure/main.bicep -------------------------------------------------------------------------------- /modules/private-endpoint.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/modules/private-endpoint.bicep -------------------------------------------------------------------------------- /resources/lambdaStoreSwagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/resources/lambdaStoreSwagger.json -------------------------------------------------------------------------------- /tests/infra-pipeline.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-cogan/lambda-toys-api-infrastructure/HEAD/tests/infra-pipeline.tests.ps1 --------------------------------------------------------------------------------