Skip to content

Commit b4bd588

Browse files
changes for readme at root of repo with tree structure
1 parent 083ab52 commit b4bd588

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

README.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Azure Terraform Modules
2+
3+
This repository contains Terraform modules designed to help manage and automate the provisioning of Azure cloud resources. Each module is crafted to follow best practices and make it easier to create, configure, and manage specific Azure services in a reusable manner.
4+
5+
## Report an Issue
6+
7+
If you encounter any issues, please report them on the [Issues page](https://github.com/devwithkrishna/azure-terraform-modules/issues/new).
8+
## Available Modules
9+
10+
* **api-management**: Located in `api-management/`
11+
* **log-analytics-workspace**: Located in `log-analytics-workspace/`
12+
* **storage-account**: Located in `storage-account/`
13+
* **virtual-network**: Located in `virtual-network/`
14+
* **vmss-linux**: Located in `vmss-linux/`
15+
16+
## Project Directory Structure
17+
```
18+
.
19+
├─ README.md
20+
├─ api-management
21+
│   ├─ README.md
22+
│   ├─ apim.tf
23+
│   ├─ output.tf
24+
│   └─ variables.tf
25+
├─ log-analytics-workspace
26+
│   ├─ README.md
27+
│   ├─ loganalytics.tf
28+
│   ├─ output.tf
29+
│   ├─ providers.tf
30+
│   └─ variables.tf
31+
├─ storage-account
32+
│   ├─ README.md
33+
│   ├─ output.tf
34+
│   ├─ providers.tf
35+
│   ├─ storageaccount.tf
36+
│   └─ variables.tf
37+
├─ virtual-network
38+
│   ├─ README.md
39+
│   ├─ nsg.tf
40+
│   ├─ output.tf
41+
│   ├─ providers.tf
42+
│   ├─ variables.tf
43+
│   └─ vnet.tf
44+
└─ vmss-linux
45+
├─ README.md
46+
├─ cloudinit.conf
47+
├─ data.tf
48+
├─ load_balancer.tf
49+
├─ outputs.tf
50+
├─ providers.tf
51+
├─ variables.tf
52+
└─ vmss.tf
53+
54+
5 directories, 29 files
55+
```

0 commit comments

Comments
 (0)