https://github.com/js-kyle/az-pulumi-apim
https://github.com/js-kyle/az-pulumi-apim
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/js-kyle/az-pulumi-apim
- Owner: js-kyle
- Created: 2022-09-10T06:09:54.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-10T06:36:28.000Z (almost 4 years ago)
- Last Synced: 2025-01-23T12:46:43.011Z (over 1 year ago)
- Language: TypeScript
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# az-pulumi-apim
Minimal example of using the Pulumi IaC tool to deploy an Azure API Management service on the consumption tier, with an Azure Function backend. Azure free tier friendly.
## Installation
Install [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli), then login.
```bash
az login
```
Install [Pulumi](https://www.pulumi.com/docs/get-started/install)
## Usage
Deploy or update infrastructure
```bash
cd pulumi
npm i
pulumi up
```
Remove infrastructure
```bash
cd pulumi
npm i
pulumi down
```