Skip to content

Commit

Permalink
fix: trigger containerapp publishing with source (#1044)
Browse files Browse the repository at this point in the history
## Description

Trigger containerapp publishing by updating a parameter description

Depends on #1040

---------

Co-authored-by: ChrisSidebotham-MSFT <[email protected]>
  • Loading branch information
eriqua and ChrisSidebotham authored Feb 19, 2024
1 parent dfaa8e9 commit 1abde82
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions avm/res/app/container-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ module containerApp 'br/public:avm/res/app/container-app:<version>' = {
| [`enableTelemetry`](#parameter-enabletelemetry) | bool | Enable/Disable usage telemetry for module. |
| [`exposedPort`](#parameter-exposedport) | int | Exposed Port in containers for TCP traffic from ingress. |
| [`ingressAllowInsecure`](#parameter-ingressallowinsecure) | bool | Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections. |
| [`ingressExternal`](#parameter-ingressexternal) | bool | Bool indicating if app exposes an external http endpoint. |
| [`ingressExternal`](#parameter-ingressexternal) | bool | Bool indicating if the App exposes an external HTTP endpoint. |
| [`ingressTargetPort`](#parameter-ingresstargetport) | int | Target Port in containers for traffic from ingress. |
| [`ingressTransport`](#parameter-ingresstransport) | string | Ingress transport protocol. |
| [`initContainersTemplate`](#parameter-initcontainerstemplate) | array | List of specialized containers that run before app containers. |
Expand Down Expand Up @@ -570,7 +570,7 @@ Bool indicating if HTTP connections to is allowed. If set to false HTTP connecti

### Parameter: `ingressExternal`

Bool indicating if app exposes an external http endpoint.
Bool indicating if the App exposes an external HTTP endpoint.

- Required: No
- Type: bool
Expand Down
2 changes: 1 addition & 1 deletion avm/res/app/container-app/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ param name string
@description('Optional. Location for all Resources.')
param location string = resourceGroup().location

@description('Optional. Bool indicating if app exposes an external http endpoint.')
@description('Optional. Bool indicating if the App exposes an external HTTP endpoint.')
param ingressExternal bool = true

@allowed([
Expand Down
4 changes: 2 additions & 2 deletions avm/res/app/container-app/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"_generator": {
"name": "bicep",
"version": "0.25.53.49325",
"templateHash": "14158508271409178393"
"templateHash": "6631896891995690305"
},
"name": "Container Apps",
"description": "This module deploys a Container App.",
Expand Down Expand Up @@ -146,7 +146,7 @@
"type": "bool",
"defaultValue": true,
"metadata": {
"description": "Optional. Bool indicating if app exposes an external http endpoint."
"description": "Optional. Bool indicating if the App exposes an external HTTP endpoint."
}
},
"ingressTransport": {
Expand Down

0 comments on commit 1abde82

Please sign in to comment.