Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shatabdi2621/pulumi-resource-guide
Example to create Azure Resource using Pulumi (Infrastructure as Code), in order to create basic yet complex azure infrastructure.
https://github.com/shatabdi2621/pulumi-resource-guide
azure infrastructure infrastructure-as-code pulumi
Last synced: 26 days ago
JSON representation
Example to create Azure Resource using Pulumi (Infrastructure as Code), in order to create basic yet complex azure infrastructure.
- Host: GitHub
- URL: https://github.com/shatabdi2621/pulumi-resource-guide
- Owner: Shatabdi2621
- Created: 2024-05-11T13:07:19.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-11T13:18:16.000Z (9 months ago)
- Last Synced: 2024-05-11T14:28:01.791Z (9 months ago)
- Topics: azure, infrastructure, infrastructure-as-code, pulumi
- Language: C#
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.MD
Awesome Lists containing this project
README
# Azure Cloud Resource Infrastructure Deployment with Pulumi
Example to create Azure Resource using Pulumi (Infrastructure as Code), in order to create basic yet complex azure infrastructure. Followimng are the list of resources getting created using this method1. azure resource group
2. azure storage account
3. enable static website for azure stoerage account
4. add index and error html page
5. enable azure cdn for static website## Get Started
1. Clone rep and move inside that directory``` bash
https://github.com/Shatabdi2621/pulumi-resource-guide.git
```
2. Compile the project and install all the dependenies
3. Check az log-in the command prompt, & then check integration of Pulumi with your local machine
4. Move inside MyStack.cs
5. Execute the following commands
``` bash
pulumi preview
```
To preview the list of resources getting created using the MyStack.cs``` bash
pulumi up
```
To deploy the infrastructure over the azure cloud account***Optional***
``` bash
pulumi destroy
```
To destroy the infrastructure created if you need to make any modification or created for testing purpose**Primary Requiremnets for the project**
- azure cloud account with login, connected to your system
- pulumi account with login, connected to your system
- azure cli
- pulumi cli