Skip to content

Commit 7e2885d

Browse files
committed
updating examples and documentation
1 parent d1a82ac commit 7e2885d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ provider "azurerm" {
1515
1616
module "app-service" {
1717
source = "kumarvna/app-service/azurerm"
18-
version = "1.0.0"
18+
version = "1.1.0"
1919
2020
# By default, this module will not create a resource group. Location will be same as existing RG.
2121
# proivde a name to use an existing resource group, specify the existing resource group name,
@@ -360,7 +360,7 @@ An effective naming convention assembles resource names by using important resou
360360
`create_resource_group` | Whether to create resource group and use it for all networking resources | string | `"false"`
361361
`resource_group_name` | The name of the resource group in which resources are created | string | `""`
362362
`location` | The location of the resource group in which resources are created | string | `""`
363-
`subnet_id`|The resource id of the subnet for vnet association|string|`""`
363+
`subnet_id`|The resource id of the subnet for regional vnet integration|string|`""`
364364
`app_service_plan_name` | Specifies the name of the App Service Plan component | string | `""`
365365
`service_plan` | Definition of the dedicated plan to use | object({}) | `{}`
366366
`app_service_name` | Specifies the name of the App Service | string | `""`

examples/app-service-with-vnet-integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ module "vnet" {
4747
4848
module "app-service" {
4949
source = "kumarvna/app-service/azurerm"
50-
version = "1.0.0"
50+
version = "1.1.0"
5151
5252
# By default, this module will not create a resource group. Location will be same as existing RG.
5353
# proivde a name to use an existing resource group, specify the existing resource group name,

examples/app-service-with-vnet-integration/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module "vnet" {
4040

4141
module "app-service" {
4242
source = "kumarvna/app-service/azurerm"
43-
version = "1.0.0"
43+
version = "1.1.0"
4444

4545
# By default, this module will not create a resource group. Location will be same as existing RG.
4646
# proivde a name to use an existing resource group, specify the existing resource group name,

examples/simple-app-service/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ provider "azurerm" {
1212
1313
module "app-service" {
1414
source = "kumarvna/app-service/azurerm"
15-
version = "1.0.0"
15+
version = "1.1.0"
1616
1717
# By default, this module will not create a resource group. Location will be same as existing RG.
1818
# proivde a name to use an existing resource group, specify the existing resource group name,

examples/simple-app-service/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ provider "azurerm" {
55

66
module "app-service" {
77
source = "kumarvna/app-service/azurerm"
8-
version = "1.0.0"
8+
version = "1.1.0"
99

1010
# By default, this module will not create a resource group. Location will be same as existing RG.
1111
# proivde a name to use an existing resource group, specify the existing resource group name,

0 commit comments

Comments
 (0)