Skip to content

Commit 5ed42c5

Browse files
authored
Fix error in azure docs and examples
* `resource_group` -> `resource_group_name`
1 parent 2aeb2e3 commit 5ed42c5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build/package/debian/config.yaml.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
# example configuration for Azure
2222

2323
# cloud_provider: Azure
24-
# subscription_id: my_subscription_id
25-
# resource_group: my_resource_group
24+
# subscription_id: my_subscription_id
25+
# resource_group_name: my_resource_group
2626
# api_endpoint: http://127.0.0.1:8080/api
2727
# sync_interval_in_seconds: 5
2828
# upstreams:

build/package/rpm/SOURCES/config.yaml.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
# example configuration for Azure
2222

2323
# cloud_provider: Azure
24-
# subscription_id: my_subscription_id
25-
# resource_group: my_resource_group
24+
# subscription_id: my_subscription_id
25+
# resource_group_name: my_resource_group
2626
# api_endpoint: http://127.0.0.1:8080/api
2727
# sync_interval_in_seconds: 5
2828
# upstreams:

examples/azure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ api_endpoint: http://127.0.0.1:8080/api
1616
sync_interval_in_seconds: 5
1717
cloud_provider: Azure
1818
subscription_id: my_subscription_id
19-
resource_group: my_resource_group
19+
resource_group_name: my_resource_group
2020
upstreams:
2121
- name: backend-one
2222
virtual_machine_scale_set: backend-one-group
@@ -32,7 +32,7 @@ upstreams:
3232
* The `sync_interval_in_seconds` key defines the synchronization interval: nginx-asg-sync checks for scaling updates every 5 seconds.
3333
* The `cloud_provider` key defines a Cloud Provider that will be used. The default is `AWS`. This means the key can be empty if using AWS. Possible values are: `AWS`, `Azure`.
3434
* The `subscription_id` key defines the Azure unique subscription id that identifies your Azure subscription.
35-
* The `resource_group` key defines the Azure resource group of your Virtual Machine Scale Set and Virtual Machine for NGINX Plus.
35+
* The `resource_group_name` key defines the Azure resource group of your Virtual Machine Scale Set and Virtual Machine for NGINX Plus.
3636
* The `upstreams` key defines the list of upstream groups. For each upstream group we specify:
3737
* `name` – The name we specified for the upstream block in the NGINX Plus configuration.
3838
* `virtual_machine_scale_set` – The name of the corresponding Virtual Machine Scale Set.

0 commit comments

Comments
 (0)