Skip to content

Commit e1bbe5a

Browse files
authored
Merge pull request #17 from nginxinc/bangbingsyb/fix-version
Update action version number in sample workflows and minor fixes in readme
2 parents 514937e + 132d951 commit e1bbe5a

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

README.md

+24-24
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# NGINX for Azure Deployment Action
22

3-
This action supports managing the configuration of an an [NGINX for Azure](https://docs.nginx.com/nginx-for-azure/quickstart/overview/) deployment in a GitHub repository. It enables continuous deployment through GitHub workflows to automatically update the NGINX for Azure deployment when changes are made to the NGINX configuration files stored in the respository.
3+
This action supports managing the configuration of an [NGINX for Azure](https://docs.nginx.com/nginx-for-azure/quickstart/overview/) deployment in a GitHub repository. It enables continuous deployment through GitHub workflows to automatically update the NGINX for Azure deployment when changes are made to the NGINX configuration files stored in the respository.
44

55
## Connecting to Azure
66

77
This action leverages the [Azure Login](https://github.com/marketplace/actions/azure-login) action for authenticating with Azure and performing update to an NGINX for Azure deployment. Two different ways of authentication are supported:
88
- [Service principal with secrets](https://docs.microsoft.com/en-us/azure/developer/github/connect-from-azure?tabs=azure-portal%2Cwindows#use-the-azure-login-action-with-a-service-principal-secret)
9-
- [OpenID Connect](https://docs.microsoft.com/en-us/azure/developer/github/connect-from-azure?tabs=azure-portal%2Cwindows#use-the-azure-login-action-with-openid-connect) (OIDC) with a Azure service principal using a Federated Identity Credential
9+
- [OpenID Connect](https://docs.microsoft.com/en-us/azure/developer/github/connect-from-azure?tabs=azure-portal%2Cwindows#use-the-azure-login-action-with-openid-connect) (OIDC) with an Azure service principal using a Federated Identity Credential
1010

11-
### Sample workflow that authenticates with Azure using Azure Service Principal with a secret
11+
### Sample workflow that authenticates with Azure using an Azure service principal with a secret
1212

1313
```yaml
1414
# File: .github/workflows/nginxForAzureDeploy.yml
1515

16-
name: Sync the NGINX configuration from the Git repository to an NGINX for Azure deployment
16+
name: Sync the NGINX configuration from the GitHub repository to an NGINX for Azure deployment
1717
on:
1818
push:
1919
branches:
@@ -28,13 +28,13 @@ jobs:
2828
- name: 'Checkout repository'
2929
uses: actions/checkout@v2
3030

31-
- name: 'Run Azure Login using Azure Service Principal with a secret'
31+
- name: 'Run Azure Login using an Azure service principal with a secret'
3232
uses: azure/login@v1
3333
with:
3434
creds: ${{ secrets.AZURE_CREDENTIALS }}
3535

36-
- name: 'Sync the NGINX configuration from the Git repository to the NGINX for Azure deployment'
37-
uses: nginxinc/nginx-for-azure-deploy-action@v1
36+
- name: 'Sync the NGINX configuration from the GitHub repository to the NGINX for Azure deployment'
37+
uses: nginxinc/nginx-for-azure-deploy-action@v0.1.0
3838
with:
3939
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
4040
resource-group-name: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }}
@@ -49,7 +49,7 @@ jobs:
4949
```yaml
5050
# File: .github/workflows/nginxForAzureDeploy.yml
5151

52-
name: Sync the NGINX configuration from the Git repository to an NGINX for Azure deployment
52+
name: Sync the NGINX configuration from the GitHub repository to an NGINX for Azure deployment
5353
on:
5454
push:
5555
branches:
@@ -75,8 +75,8 @@ jobs:
7575
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
7676
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
7777

78-
- name: 'Sync the NGINX configuration from the Git repository to the NGINX for Azure deployment'
79-
uses: nginxinc/nginx-for-azure-deploy-action@v1
78+
- name: 'Sync the NGINX configuration from the GitHub repository to the NGINX for Azure deployment'
79+
uses: nginxinc/nginx-for-azure-deploy-action@v0.1.0
8080
with:
8181
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
8282
resource-group-name: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }}
@@ -87,20 +87,20 @@ jobs:
8787
```
8888
## Handling NGINX configuration file paths
8989
90-
To facilitate the migration of the existing NGINX configuration, NGINX for Azure supports multiple-files configuration with each file uniquely identified by a file path, just like how NGINX configuration files are created and used in a self-hosting machine. An NGINX configuration file can include another file using the [include directive](https://docs.nginx.com/nginx/admin-guide/basic-functionality/managing-configuration-files/). The file path used in an include directive can either be an absolute path or a relative path to the [prefix path](https://www.nginx.com/resources/wiki/start/topics/tutorials/installoptions/).
90+
To facilitate the migration of the existing NGINX configuration, NGINX for Azure supports multiple-files configuration with each file uniquely identified by a file path, just like how NGINX configuration files are created and used in a self-hosting machine. An NGINX configuration file can include another file using the [include directive](https://docs.nginx.com/nginx/admin-guide/basic-functionality/managing-configuration-files/). The file path used in an `include` directive can either be an absolute path or a relative path to the [prefix path](https://www.nginx.com/resources/wiki/start/topics/tutorials/installoptions/).
9191

92-
The following example shows two NGINX configuration files inside the `/etc/nginx` directory on disk are copied and stored in the a GitHub respository under its `config` directory.
92+
The following example shows two NGINX configuration files inside the `/etc/nginx` directory on disk are copied and stored in a GitHub respository under its `config` directory.
9393

94-
| File path on disk | File path in respository |
94+
| File path on disk | File path in the respository |
9595
|--------------------------------------|-----------------------------------|
9696
| /etc/nginx/nginx.conf | /config/nginx.conf |
9797
| /etc/nginx/sites-enabled/mysite.conf | /config/sites-enabled/mysite.conf |
9898

9999
To use this action to sync the configuration files from this example, the directory path relative to the GitHub repository root `config/` is set to the action's input `nginx-config-directory-path` for the action to find and package the configuration files. The root file `nginx.conf` is set to the input `nginx-root-config-file`.
100100

101101
```yaml
102-
- name: 'Sync the NGINX configuration from the Git repository to the NGINX for Azure deployment'
103-
uses: nginxinc/nginx-for-azure-deploy-action@v1
102+
- name: 'Sync the NGINX configuration from the GitHub repository to the NGINX for Azure deployment'
103+
uses: nginxinc/nginx-for-azure-deploy-action@v0.1.0
104104
with:
105105
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
106106
resource-group-name: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }}
@@ -111,10 +111,10 @@ To use this action to sync the configuration files from this example, the direct
111111

112112
By default, the action uses a file's relative path to `nginx-config-directory-path` in the respository as the file path in the NGINX for Azure deployment.
113113

114-
| File path on disk | File path in respository | File path in NGINX for Azure |
115-
|--------------------------------------|-----------------------------------|------------------------------|
116-
| /etc/nginx/nginx.conf | /config/nginx.conf | nginx.conf |
117-
| /etc/nginx/sites-enabled/mysite.conf | /config/sites-enabled/mysite.conf | sites-enabled/mysite.conf |
114+
| File path on disk | File path in the respository | File path in the NGINX for Azure deployment |
115+
|--------------------------------------|-----------------------------------|---------------------------------------------|
116+
| /etc/nginx/nginx.conf | /config/nginx.conf | nginx.conf |
117+
| /etc/nginx/sites-enabled/mysite.conf | /config/sites-enabled/mysite.conf | sites-enabled/mysite.conf |
118118

119119
The default file path handling works for the case of using relative paths in `include` directives, for example, if the root `nginx.conf` references `mysite.conf` using:
120120

@@ -132,7 +132,7 @@ The action supports an optional input `transformed-nginx-config-directory-path`
132132

133133
```yaml
134134
- name: 'Sync the NGINX configuration from the Git repository to the NGINX for Azure deployment'
135-
uses: nginxinc/nginx-for-azure-deploy-action@v1
135+
uses: nginxinc/nginx-for-azure-deploy-action@v0.1.0
136136
with:
137137
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
138138
resource-group-name: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }}
@@ -143,7 +143,7 @@ The action supports an optional input `transformed-nginx-config-directory-path`
143143
```
144144
The transformed paths of the two configuration files in the NGINX for Azure deployment are summarized in the following table
145145

146-
| File path on disk | File path in respository | File path in NGINX for Azure |
147-
|--------------------------------------|-----------------------------------|--------------------------------------|
148-
| /etc/nginx/nginx.conf | /config/nginx.conf | /etc/nginx/nginx.conf |
149-
| /etc/nginx/sites-enabled/mysite.conf | /config/sites-enabled/mysite.conf | /etc/nginx/sites-enabled/mysite.conf |
146+
| File path on disk | File path in the respository | File path in the NGINX for Azure deployment |
147+
|--------------------------------------|-----------------------------------|---------------------------------------------|
148+
| /etc/nginx/nginx.conf | /config/nginx.conf | /etc/nginx/nginx.conf |
149+
| /etc/nginx/sites-enabled/mysite.conf | /config/sites-enabled/mysite.conf | /etc/nginx/sites-enabled/mysite.conf |

0 commit comments

Comments
 (0)