Skip to content

Commit 03ef296

Browse files
committed
update module
1 parent 7f0454b commit 03ef296

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ provider "azurerm" {
1313
features {}
1414
}
1515
16-
module "web-app" {
17-
source = "kumarvna/web-app/azurerm"
16+
module "app-service" {
17+
source = "kumarvna/app-service/azurerm"
1818
version = "1.0.0"
1919
2020
# By default, this module will not create a resource group. Location will be same as existing RG.
@@ -415,7 +415,3 @@ Originally created by [Kumaraswamy Vithanala](mailto:kumarvna@gmail.com)
415415

416416
- [App Service(Web Apps)](https://docs.microsoft.com/en-us/azure/app-service/)
417417
- [Terraform AzureRM Provider Documentation](https://www.terraform.io/docs/providers/azurerm/index.html)
418-
419-
```
420-
421-
```

examples/complete/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ provider "azurerm" {
1010
features {}
1111
}
1212
13-
module "web-app" {
14-
source = "kumarvna/web-app/azurerm"
13+
module "app-service" {
14+
source = "kumarvna/app-service/azurerm"
1515
version = "1.0.0"
1616
1717
# By default, this module will not create a resource group. Location will be same as existing RG.

examples/complete/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ provider "azurerm" {
33
features {}
44
}
55

6-
module "web-app" {
7-
// source = "kumarvna/web-app/azurerm"
8-
// version = "1.0.0"
6+
module "app-service" {
7+
// source = "kumarvna/app-service/azurerm"
8+
// version = "1.0.0"
99
source = "../../"
1010

1111
# By default, this module will not create a resource group. Location will be same as existing RG.

0 commit comments

Comments
 (0)