Skip to content

Refactor highlight shortcode to use ticks #424

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ The following issues are known to be present in this release. Look for updates t
**Workaround:**

Manually start the bd_agent process on the NAP module using this command: 
{{< highlight bash >}}/bin/su -s /bin/bash -c '/opt/app_protect/bin/bd_agent &' nginx.{{< /highlight >}}
```bash {linenos=false,hl_lines=[1]}
/bin/su -s /bin/bash -c '/opt/app_protect/bin/bd_agent &' nginx.
```

Then restart the NGINX service.

Expand Down
12 changes: 6 additions & 6 deletions content/nginxaas-azure/known-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Attaching multiple certificates to a deployment quickly will result in a deploym

Use [depends_on](https://developer.hashicorp.com/terraform/language/meta-arguments/depends_on) to add a dependency between certificate resources:

{{< highlight hcl "linenos=false,hl_lines=16" >}}
```hcl {linenos=false,hl_lines=[16]}
resource "azurerm_nginx_certificate" "cert1" {
name = "examplecert"
nginx_deployment_id = azurerm_nginx_deployment.test.id
Expand All @@ -129,13 +129,13 @@ resource "azurerm_nginx_certificate" "cert2" {

depends_on = [azurerm_nginx_certificate.cert1]
}
{{< / highlight >}}
```

**ARM Template**

Use [dependsOn](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/resource-dependency) to add a dependency between certificate resources:

{{< highlight json "linenos=false,hl_lines=21" >}}
```json {linenos=false,hl_lines=[21]}
{
"type": "NGINX.NGINXPLUS/nginxDeployments/certificates",
"apiVersion": "2021-05-01-preview",
Expand All @@ -158,13 +158,13 @@ Use [dependsOn](https://learn.microsoft.com/en-us/azure/azure-resource-manager/t
}
"dependsOn": ["cert1"]
}
{{< / highlight >}}
```

**Bicep Template**

Use [dependsOn](https://learn.microsoft.com/en-us/azure/azure-resource-manager/bicep/resource-dependencies) to add a dependency between certificate resources:

{{< highlight bicep "linenos=false,hl_lines=17" >}}
```bicep {linenos=false,hl_lines=[17]}
resource cert1 'NGINX.NGINXPLUS/nginxDeployments/certificates@2021-05-01-preview' = {
name: '${nginxDeploymentName}/cert1'
properties: {
Expand All @@ -183,7 +183,7 @@ resource cert2 'NGINX.NGINXPLUS/nginxDeployments/certificates@2021-05-01-preview
}
dependsOn: [cert1]
}
{{< / highlight >}}
```

### {{% icon-bug %}} Terraform errors around capacity for Basic plan deployments (ID-4880)

Expand Down
Loading