Skip to content
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 @@ -754,7 +754,7 @@
"allowInsecure": {
"description": "Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections",
"type": "boolean",
"default": "false"
"default": false
},
"ipSecurityRestrictions": {
"description": "Rules to restrict incoming IP address.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@
"allowInsecure": {
"description": "Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections",
"type": "boolean",
"default": "false"
"default": false
}
}
},
Expand Down
23 changes: 0 additions & 23 deletions specification/app/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,3 @@ clear-output-folder: true
no-namespace-folders: true
output-folder: $(python-sdks-folder)/appcontainers/azure-mgmt-appcontainers/azure/mgmt/appcontainers
```

``` yaml $(python)
directive:
- from: CommonDefinitions.json
where: $.definitions.DaprComponent.properties.ignoreErrors
transform: $['default'] = 'False'

- from: ContainerApps.json
where: $.definitions.Dapr.properties.enabled
transform: $['default'] = 'False'

- from: ContainerApps.json
where: $.definitions.Ingress.properties.external
transform: $['default'] = 'False'

- from: ContainerApps.json
where: $.definitions.TrafficWeight.properties.latestRevision
transform: $['default'] = 'False'

- from: ContainerApps.json
where: $.definitions.Ingress.properties.allowInsecure
transform: $['default'] = 'False'
```