Skip to content

Commit

Permalink
Merge pull request Azure#24 from george-ngugi/nginx200922
Browse files Browse the repository at this point in the history
Create command models for Nginx for Azure
  • Loading branch information
kairu-ms authored Oct 2, 2022
2 parents c28daab + d0ef532 commit ac5e95e
Show file tree
Hide file tree
Showing 34 changed files with 10,783 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Commands/nginx/deployment/_create.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# [Command] _nginx deployment create_

Create an NGINX for Azure resource

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{} 2022-08-01 -->

#### examples

- Deployment Create with PublicIP
```bash
nginx deployment create --name myDeployment --resource-group myResourceGroup --location eastus2 --sku name="preview_Monthly_gmz7xq9ge3py" --network-profile front-end-ip-configuration="{public-ip-addresses:[{id:/subscriptions/mySubscription/resourceGroups/myResourceGroup/providers/Microsoft.Network/publicIPAddresses/myPublicIP}]}" network-interface-configuration="{subnet-id:/subscriptions/mySubscription/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/mySubnet}"
```

- Deployment Create with PrivateIP
```bash
nginx deployment create --name myDeployment --resource-group myResourceGroup --location eastus2 --sku name="preview_Monthly_gmz7xq9ge3py" --network-profile front-end-ip-configuration="{private-ip-addresses:[{private-ip-allocation-method:Static,subnet-id:/subscriptions/mySubscription/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/mySubnet,private-ip-address:10.0.0.2}]}" network-interface-configuration="{subnet-id:/subscriptions/mySubscription/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/mySubnet}"
nginx deployment create --name myDeployment --resource-group myResourceGroup --location eastus2 --sku name="preview_Monthly_gmz7xq9ge3py" --network-profile front-end-ip-configuration="{private-ip-addresses:[{private-ip-allocation-method:Dynamic,subnet-id:/subscriptions/mySubscription/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/mySubnet,private-ip-address:10.0.0.2}]}" network-interface-configuration="{subnet-id:/subscriptions/mySubscription/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVNet/subnets/mySubnet}"
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/_delete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment delete_

Delete an NGINX deployment

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{} 2022-08-01 -->

#### examples

- Deployment Delete
```bash
nginx deployment delete --name myDeployment --resource-group myResourceGroup
```
21 changes: 21 additions & 0 deletions Commands/nginx/deployment/_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# [Command] _nginx deployment list_

List of NGINX deployments

List all deployments under the specified subscription.\
List all Nginx Deployments under the specified resource group

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRz/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/providers/nginx.nginxplus/nginxdeployments 2022-08-01 -->
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments 2022-08-01 -->

#### examples

- Deployment List
```bash
nginx deployment list
nginx deployment list --resource-group myResourceGroup
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/_show.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment show_

Get the properties of a specific NGINX Deployment

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{} 2022-08-01 -->

#### examples

- Deployment Get
```bash
nginx deployment show --name myDeployment --resource-group myResourceGroup
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/_update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment update_

Update an NGINX deployment

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{} 2022-08-01 -->

#### examples

- Update tags and enable diagnostics support for a deployment
```bash
nginx deployment update --name myDeployment --resource-group myResourceGroup --location eastus2 --tags tag1="value1" tag2="value2" --enable-diagnostics
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/certificate/_create.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment certificate create_

Create a certificate for an NGINX deployment

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9L2NlcnRpZmljYXRlcy97fQ==/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{}/certificates/{} 2022-08-01 -->

#### examples

- Certificate Create
```bash
nginx deployment certificate create --certificate-name myCertificate --deployment-name myDeployment --resource-group myResourceGroup --certificate-path /etc/nginx/test.cert --key-path /etc/nginx/test.key --key-vault-secret-id keyVaultSecretId
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/certificate/_delete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment certificate delete_

Delete an NGINX deployment certificate

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9L2NlcnRpZmljYXRlcy97fQ==/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{}/certificates/{} 2022-08-01 -->

#### examples

- Certificate_Delete
```bash
nginx deployment certificate delete --certificate-name myCertificate --deployment-name myDeployment --resource-group myResourceGroup
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/certificate/_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment certificate list_

List all certificates under the specified deployment and resource group

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9L2NlcnRpZmljYXRlcw==/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{}/certificates 2022-08-01 -->

#### examples

- Certificate ListByDeployment
```bash
nginx deployment certificate list --deployment-name myDeployment --resource-group myResourceGroup
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/certificate/_show.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment certificate show_

Get the properties of a specific NGINX certificate.

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9L2NlcnRpZmljYXRlcy97fQ==/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{}/certificates/{} 2022-08-01 -->

#### examples

- Certificate Get
```bash
nginx deployment certificate show --certificate-name myCertificate --deployment-name myDeployment --resource-group myResourceGroup
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/certificate/_update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment certificate update_

Update an NGINX deployment certificate

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9L2NlcnRpZmljYXRlcy97fQ==/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{}/certificates/{} 2022-08-01 -->

#### examples

- Update the certificate virtual path, key virtual path and certificate
```bash
nginx deployment certificate update --certificate-name myCertificate --deployment-name myDeployment --resource-group myResourceGroup --certificate-path /etc/nginx/testupdated.cert --key-path /etc/nginx/testupdated.key --key-vault-secret-id newKeyVaultSecretId
```
20 changes: 20 additions & 0 deletions Commands/nginx/deployment/certificate/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# [Group] _nginx deployment certificate_

Manage NGINX certificate resources

## Commands

- [create](/Commands/nginx/deployment/certificate/_create.md)
: Create a certificate for an NGINX deployment

- [delete](/Commands/nginx/deployment/certificate/_delete.md)
: Delete an NGINX deployment certificate

- [list](/Commands/nginx/deployment/certificate/_list.md)
: List all certificates under the specified deployment and resource group

- [show](/Commands/nginx/deployment/certificate/_show.md)
: Get the properties of a specific NGINX certificate.

- [update](/Commands/nginx/deployment/certificate/_update.md)
: Update an NGINX deployment certificate
21 changes: 21 additions & 0 deletions Commands/nginx/deployment/configuration/_create.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# [Command] _nginx deployment configuration create_

Create a configuration for an NGINX deployment

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9L2NvbmZpZ3VyYXRpb25zL3t9/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{}/configurations/{} 2022-08-01 -->

#### examples

- Single file Configuration Create
```bash
nginx deployment configuration create --name default --deployment-name myDeployment --resource-group myResourceGroup --root-file /etc/nginx/nginx.conf --files "[{content:'aHR0cCB7CiAgICB1cHN0cmVhbSBhcHAgewogICAgICAgIHpvbmUgYXBwIDY0azsKICAgICAgICBsZWFzdF9jb25uOwogICAgICAgIHNlcnZlciAxMC4wLjEuNDo4MDAwOwogICAgfQoKICAgIHNlcnZlciB7CiAgICAgICAgbGlzdGVuIDgwOwogICAgICAgIHNlcnZlcl9uYW1lICouZXhhbXBsZS5jb207CgogICAgICAgIGxvY2F0aW9uIC8gewogICAgICAgICAgICBwcm94eV9zZXRfaGVhZGVyIEhvc3QgJGhvc3Q7CiAgICAgICAgICAgIHByb3h5X3NldF9oZWFkZXIgWC1SZWFsLUlQICRyZW1vdGVfYWRkcjsKICAgICAgICAgICAgcHJveHlfc2V0X2hlYWRlciBYLVByb3h5LUFwcCBhcHA7CiAgICAgICAgICAgIHByb3h5X3NldF9oZWFkZXIgR2l0aHViLVJ1bi1JZCAwMDAwMDA7CiAgICAgICAgICAgIHByb3h5X2J1ZmZlcmluZyBvbjsKICAgICAgICAgICAgcHJveHlfYnVmZmVyX3NpemUgNGs7CiAgICAgICAgICAgIHByb3h5X2J1ZmZlcnMgOCA4azsKICAgICAgICAgICAgcHJveHlfcmVhZF90aW1lb3V0IDYwczsKICAgICAgICAgICAgcHJveHlfcGFzcyBodHRwOi8vYXBwOwogICAgICAgICAgICBoZWFsdGhfY2hlY2s7CiAgICAgICAgfQogICAgICAgIAogICAgfQp9',virtual-path:'/etc/nginx/nginx.conf'}]"
```

- Multi-file Configuration Create
```bash
nginx deployment configuration create --name default --deployment-name myDeployment --resource-group myResourceGroup --root-file /etc/nginx/nginx.conf --files "[{'content':'aHR0cCB7CiAgICB1cHN0cmVhbSBhcHAgewogICAgICAgIHpvbmUgYXBwIDY0azsKICAgICAgICBsZWFzdF9jb25uOwogICAgICAgIHNlcnZlciAxMC4wLjEuNDo4MDAwOwogICAgfQoKICAgIHNlcnZlciB7CiAgICAgICAgbGlzdGVuIDgwOwogICAgICAgIHNlcnZlcl9uYW1lICouZXhhbXBsZS5jb207CgogICAgICAgIGxvY2F0aW9uIC8gewogICAgICAgICAgICBpbmNsdWRlIC9ldGMvbmdpbngvY29uZi5kL3Byb3h5LmNvbmY7CiAgICAgICAgICAgIHByb3h5X3Bhc3MgaHR0cDovL2FwcDsKICAgICAgICAgICAgaGVhbHRoX2NoZWNrOwogICAgICAgIH0KICAgICAgICAKICAgIH0KfQ==','virtual-path':'/etc/nginx/nginx.conf'},{'content':'cHJveHlfc2V0X2hlYWRlciBIb3N0ICRob3N0Owpwcm94eV9zZXRfaGVhZGVyIFgtUmVhbC1JUCAkcmVtb3RlX2FkZHI7CnByb3h5X3NldF9oZWFkZXIgWC1Qcm94eS1BcHAgYXBwOwpwcm94eV9zZXRfaGVhZGVyIEdpdGh1Yi1SdW4tSWQgMDAwMDAwOwpwcm94eV9idWZmZXJpbmcgb247CnByb3h5X2J1ZmZlcl9zaXplIDRrOwpwcm94eV9idWZmZXJzIDggOGs7CnByb3h5X3JlYWRfdGltZW91dCA2MHM7','virtual-path':'/etc/nginx/conf.d/proxy.conf'}]"
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/configuration/_delete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment configuration delete_

Delete an Nginx configuration

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9L2NvbmZpZ3VyYXRpb25zL3t9/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{}/configurations/{} 2022-08-01 -->

#### examples

- Configuration Delete
```bash
nginx deployment configuration delete --name default --deployment-name myDeployment --resource-group myResourceGroup
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/configuration/_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment configuration list_

List all configurations under the specified deployment and resource group

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9L2NvbmZpZ3VyYXRpb25z/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{}/configurations 2022-08-01 -->

#### examples

- Configuration ListByDeployment
```bash
nginx deployment configuration list --deployment-name myDeployment --resource-group myResourceGroup
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/configuration/_show.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment configuration show_

Get the properties of a specific NGINX configuration

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9L2NvbmZpZ3VyYXRpb25zL3t9/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{}/configurations/{} 2022-08-01 -->

#### examples

- Configuration Get
```bash
nginx deployment configuration show --name default --deployment-name myDeployment --resource-group myResourceGroup
```
16 changes: 16 additions & 0 deletions Commands/nginx/deployment/configuration/_update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# [Command] _nginx deployment configuration update_

Update an NGINX configuration

## Versions

### [2022-08-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL25naW54Lm5naW54cGx1cy9uZ2lueGRlcGxveW1lbnRzL3t9L2NvbmZpZ3VyYXRpb25zL3t9/2022-08-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/nginx.nginxplus/nginxdeployments/{}/configurations/{} 2022-08-01 -->

#### examples

- Update content of the first file in a configuration
```bash
nginx deployment configuration update --name default --deployment-name myDeployment --resource-group myResourceGroup --files [0].content="aHR0cCB7CiAgICB1cHN0cmVhbSBhcHAgewogICAgICAgIHpvbmUgYXBwIDY0azsKICAgICAgICBsZWFzdF9jb25uOwogICAgICAgIHNlcnZlciAxMC4wLjEuNDo4MDAwOwogICAgfQoKICAgIHNlcnZlciB7CiAgICAgICAgbGlzdGVuIDgwOwogICAgICAgIHNlcnZlcl9uYW1lICouZXhhbXBsZS5jb207CgogICAgICAgIGxvY2F0aW9uIC8gewogICAgICAgICAgICBwcm94eV9zZXRfaGVhZGVyIEhvc3QgJGhvc3Q7CiAgICAgICAgICAgIHByb3h5X3NldF9oZWFkZXIgWC1SZWFsLUlQICRyZW1vdGVfYWRkcjsKICAgICAgICAgICAgcHJveHlfc2V0X2hlYWRlciBYLVByb3h5LUFwcCBhcHA7CiAgICAgICAgICAgIHByb3h5X3NldF9oZWFkZXIgR2l0aHViLVJ1bi1JZCAwMDAwMDA7CiAgICAgICAgICAgIHByb3h5X2J1ZmZlcmluZyBvbjsKICAgICAgICAgICAgcHJveHlfYnVmZmVyX3NpemUgNGs7CiAgICAgICAgICAgIHByb3h5X2J1ZmZlcnMgOCA4azsKICAgICAgICAgICAgcHJveHlfcmVhZF90aW1lb3V0IDYwczsKICAgICAgICAgICAgcHJveHlfcGFzcyBodHRwOi8vYXBwOwogICAgICAgICAgICBoZWFsdGhfY2hlY2s7CiAgICAgICAgfQogICAgICAgIAogICAgfQp9"
```
20 changes: 20 additions & 0 deletions Commands/nginx/deployment/configuration/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# [Group] _nginx deployment configuration_

Manage NGINX configuration resources

## Commands

- [create](/Commands/nginx/deployment/configuration/_create.md)
: Create a configuration for an NGINX deployment

- [delete](/Commands/nginx/deployment/configuration/_delete.md)
: Delete an Nginx configuration

- [list](/Commands/nginx/deployment/configuration/_list.md)
: List all configurations under the specified deployment and resource group

- [show](/Commands/nginx/deployment/configuration/_show.md)
: Get the properties of a specific NGINX configuration

- [update](/Commands/nginx/deployment/configuration/_update.md)
: Update an NGINX configuration
28 changes: 28 additions & 0 deletions Commands/nginx/deployment/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# [Group] _nginx deployment_

Manage NGINX deployment resources

## Subgroups

- [certificate](/Commands/nginx/deployment/certificate/readme.md)
: Manage NGINX certificate resources

- [configuration](/Commands/nginx/deployment/configuration/readme.md)
: Manage NGINX configuration resources

## Commands

- [create](/Commands/nginx/deployment/_create.md)
: Create an NGINX for Azure resource

- [delete](/Commands/nginx/deployment/_delete.md)
: Delete an NGINX deployment

- [list](/Commands/nginx/deployment/_list.md)
: List of NGINX deployments

- [show](/Commands/nginx/deployment/_show.md)
: Get the properties of a specific NGINX Deployment

- [update](/Commands/nginx/deployment/_update.md)
: Update an NGINX deployment
8 changes: 8 additions & 0 deletions Commands/nginx/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# [Group] _nginx_

Manage NGINX deployment resources

## Subgroups

- [deployment](/Commands/nginx/deployment/readme.md)
: Manage NGINX deployment resources
3 changes: 3 additions & 0 deletions Commands/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
- [network-function](/Commands/network-function/readme.md)
: Manage network function

- [nginx](/Commands/nginx/readme.md)
: Manage NGINX deployment resources

- [orbital](/Commands/orbital/readme.md)
: Azure Orbital Ground Station as-a-Service (GSaaS).

Expand Down
Loading

0 comments on commit ac5e95e

Please sign in to comment.