Skip to content

Commit

Permalink
fix app (#21044)
Browse files Browse the repository at this point in the history
  • Loading branch information
msyyc authored Oct 10, 2022
1 parent feeb526 commit 0af1101
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 25 deletions.
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'
```

0 comments on commit 0af1101

Please sign in to comment.