Skip to content

Commit

Permalink
Fix format of cert password for env custom domain (Azure#21461)
Browse files Browse the repository at this point in the history
* fix

* fix
  • Loading branch information
Juliehzl authored and anandanthony committed Dec 16, 2022
1 parent 64d5305 commit 87711d0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,6 @@
"x-ms-secret": true
},
"certificatePassword": {
"format": "byte",
"description": "Certificate password",
"type": "string",
"x-ms-secret": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"location": "East US",
"properties": {
"password": "private key password",
"value": "PFX-or-PEM-blob"
"value": "Y2VydA=="
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744",
"resourceGroupName": "rg",
"containerAppName": "testcontainerApp0",
"api-version": "2022-05-01"
"api-version": "2022-06-01-preview"
},
"responses": {
"200": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"customDomainConfiguration": {
"dnsSuffix": "www.my-name.com",
"certificateValue": "PFX-or-PEM-blob",
"certificateValue": "Y2VydA==",
"certificatePassword": "private key password"
},
"workloadProfiles": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
},
"responses": {
"200": {},
"202": {},
"202": {
"headers": {
"location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.App/localtions/eastus/operationResults/00000"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744",
"resourceGroupName": "rg",
"environmentName": "testenv",
"api-version": "2022-05-01"
"api-version": "2022-06-01-preview"
},
"responses": {
"200": {
Expand Down

0 comments on commit 87711d0

Please sign in to comment.