Skip to content

Commit 94d521e

Browse files
committed
update README.md
1 parent c008b3e commit 94d521e

File tree

1 file changed

+151
-1
lines changed

1 file changed

+151
-1
lines changed

README.md

Lines changed: 151 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,151 @@
1-
# terraform-module-template
1+
<!-- This file was automatically generated by the `geine`. Make all changes to `README.yaml` and run `make readme` to rebuild this file. -->
2+
3+
<p align="center"> <img src="https://user-images.githubusercontent.com/50652676/62349836-882fef80-b51e-11e9-99e3-7b974309c7e3.png" width="100" height="100"></p>
4+
5+
6+
<h1 align="center">
7+
Terraform AZURE App Insights
8+
</h1>
9+
10+
<p align="center" style="font-size: 1.2rem;">
11+
Terraform module to create Azure App Insights resource on AZURE.
12+
</p>
13+
14+
<p align="center">
15+
16+
<a href="https://www.terraform.io">
17+
<img src="https://img.shields.io/badge/Terraform-v1.1.7-green" alt="Terraform">
18+
</a>
19+
<a href="LICENSE.md">
20+
<img src="https://img.shields.io/badge/License-APACHE-blue.svg" alt="Licence">
21+
</a>
22+
23+
24+
</p>
25+
<p align="center">
26+
27+
<a href='https://facebook.com/sharer/sharer.php?u=https://github.com/clouddrove/terraform-azure-app-insights'>
28+
<img title="Share on Facebook" src="https://user-images.githubusercontent.com/50652676/62817743-4f64cb80-bb59-11e9-90c7-b057252ded50.png" />
29+
</a>
30+
<a href='https://www.linkedin.com/shareArticle?mini=true&title=Terraform+AZURE+App+Insights&url=https://github.com/clouddrove/terraform-azure-app-insights'>
31+
<img title="Share on LinkedIn" src="https://user-images.githubusercontent.com/50652676/62817742-4e339e80-bb59-11e9-87b9-a1f68cae1049.png" />
32+
</a>
33+
<a href='https://twitter.com/intent/tweet/?text=Terraform+AZURE+App+Insights&url=https://github.com/clouddrove/terraform-azure-app-insights'>
34+
<img title="Share on Twitter" src="https://user-images.githubusercontent.com/50652676/62817740-4c69db00-bb59-11e9-8a79-3580fbbf6d5c.png" />
35+
</a>
36+
37+
</p>
38+
<hr>
39+
40+
41+
We eat, drink, sleep and most importantly love **DevOps**. We are working towards strategies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy <b>Bigger problems are always solved by breaking them into smaller manageable problems</b>. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller <b>connected yet manageable pieces</b> within the infrastructure.
42+
43+
This module is basically combination of [Terraform open source](https://www.terraform.io/) and includes automatation tests and examples. It also helps to create and improve your infrastructure with minimalistic code instead of maintaining the whole infrastructure code yourself.
44+
45+
We have [*fifty plus terraform modules*][terraform_modules]. A few of them are comepleted and are available for open source usage while a few others are in progress.
46+
47+
48+
49+
50+
## Prerequisites
51+
52+
This module has a few dependencies:
53+
54+
- [Terraform 1.x.x](https://learn.hashicorp.com/terraform/getting-started/install.html)
55+
- [Go](https://golang.org/doc/install)
56+
- [github.com/stretchr/testify/assert](https://github.com/stretchr/testify)
57+
- [github.com/gruntwork-io/terratest/modules/terraform](https://github.com/gruntwork-io/terratest)
58+
59+
60+
61+
62+
63+
64+
65+
## Examples
66+
67+
68+
**IMPORTANT:** Since the `master` branch used in `source` varies based on new modifications, we suggest that you use the release versions [here](https://github.com/clouddrove/terraform-azure-app-insights/releases).
69+
70+
71+
Here are some examples of how you can use this module in your inventory structure:
72+
### azure app insights
73+
```hcl
74+
# Basic
75+
module "app-insights" {
76+
source = "terraform/app-insights/azure"
77+
version = "1.0.0"
78+
name = "app"
79+
environment = "test"
80+
label_order = ["name", "environment"]
81+
enabled = true
82+
location = module.resource_group.resource_group_location
83+
resource_group_name = module.resource_group.resource_group_name
84+
# workspace_id = module.log-analytics.workspace_id
85+
application_insights_config = "web"
86+
}
87+
```
88+
89+
90+
91+
92+
93+
94+
## Inputs
95+
96+
| Name | Description | Type | Default | Required |
97+
|------|-------------|------|---------|:--------:|
98+
| application | Application (e.g. `cd` or `clouddrove`). | `string` | `""` | no |
99+
| application\_insights\_config | Specifies the type of Application Insights to create. Valid values are ios for iOS, java for Java web, MobileCenter for App Center, Node.JS for Node.js, other for General, phone for Windows Phone, store for Windows Store and web for ASP.NET. Please note these values are case sensitive; unmatched values are treated as ASP.NET by Azure. Changing this forces a new resource to be created. | `string` | `"web"` | no |
100+
| enabled | Flag to control the module creation. | `bool` | `true` | no |
101+
| environment | Environment (e.g. `prod`, `dev`, `staging`). | `string` | `""` | no |
102+
| label\_order | Label order, e.g. `name`,`application`. | `list(any)` | `[]` | no |
103+
| location | Location where resource should be created. | `string` | `""` | no |
104+
| managedby | ManagedBy, eg 'CloudDrove' or 'AnmolNagpal'. | `string` | `"[email protected]"` | no |
105+
| name | Name (e.g. `app` or `cluster`). | `string` | `""` | no |
106+
| repository | Terraform current module repo | `string` | `""` | no |
107+
| resource\_group\_name | The name of the resource group in which to create the virtual network. | `string` | `""` | no |
108+
| tags | Additional tags (e.g. map(`BusinessUnit`,`XYZ`). | `map(any)` | `{}` | no |
109+
| workspace\_id | Specifies the id of a log analytics workspace resource. Changing this forces a new resource to be created. | `string` | `null` | no |
110+
111+
## Outputs
112+
113+
| Name | Description |
114+
|------|-------------|
115+
| app\_insights\_app\_id | The App ID associated with this Application Insights component. |
116+
| app\_insights\_id | The ID of the Application Insights component. |
117+
| connection\_string | The Connection String for this Application Insights component. (Sensitive) |
118+
| instrumentation\_key | The Instrumentation Key for this Application Insights component. (Sensitive) |
119+
120+
121+
122+
123+
## Testing
124+
In this module testing is performed with [terratest](https://github.com/gruntwork-io/terratest) and it creates a small piece of infrastructure, matches the output like ARN, ID and Tags name etc and destroy infrastructure in your AWS account. This testing is written in GO, so you need a [GO environment](https://golang.org/doc/install) in your system.
125+
126+
You need to run the following command in the testing folder:
127+
```hcl
128+
go test -run Test
129+
```
130+
131+
132+
133+
## Feedback
134+
If you come accross a bug or have any feedback, please log it in our [issue tracker](https://github.com/clouddrove/terraform-azure-app-insights/issues), or feel free to drop us an email at [[email protected]](mailto:[email protected]).
135+
136+
If you have found it worth your time, go ahead and give us a ★ on [our GitHub](https://github.com/clouddrove/terraform-azure-app-insights)!
137+
138+
## About us
139+
140+
At [CloudDrove][website], we offer expert guidance, implementation support and services to help organisations accelerate their journey to the cloud. Our services include docker and container orchestration, cloud migration and adoption, infrastructure automation, application modernisation and remediation, and performance engineering.
141+
142+
<p align="center">We are <b> The Cloud Experts!</b></p>
143+
<hr />
144+
<p align="center">We ❤️ <a href="https://github.com/clouddrove">Open Source</a> and you can check out <a href="https://github.com/clouddrove">our other modules</a> to get help with your new Cloud ideas.</p>
145+
146+
[website]: https://clouddrove.com
147+
[github]: https://github.com/clouddrove
148+
[linkedin]: https://cpco.io/linkedin
149+
[twitter]: https://twitter.com/clouddrove/
150+
[email]: https://clouddrove.com/contact-us.html
151+
[terraform_modules]: https://github.com/clouddrove?utf8=%E2%9C%93&q=terraform-&type=&language=

0 commit comments

Comments
 (0)