Skip to content

Commit ad72995

Browse files
Juliehzlkayousef
authored andcommitted
Fix format of cert password for env custom domain (Azure#21461)
* fix * fix
1 parent 469903c commit ad72995

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

specification/app/resource-manager/Microsoft.App/preview/2022-06-01-preview/CommonDefinitions.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,6 @@
317317
"x-ms-secret": true
318318
},
319319
"certificatePassword": {
320-
"format": "byte",
321320
"description": "Certificate password",
322321
"type": "string",
323322
"x-ms-secret": true

specification/app/resource-manager/Microsoft.App/preview/2022-06-01-preview/examples/Certificate_CreateOrUpdate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"location": "East US",
1010
"properties": {
1111
"password": "private key password",
12-
"value": "PFX-or-PEM-blob"
12+
"value": "Y2VydA=="
1313
}
1414
}
1515
},

specification/app/resource-manager/Microsoft.App/preview/2022-06-01-preview/examples/ContainerApps_GetAuthToken.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744",
44
"resourceGroupName": "rg",
55
"containerAppName": "testcontainerApp0",
6-
"api-version": "2022-05-01"
6+
"api-version": "2022-06-01-preview"
77
},
88
"responses": {
99
"200": {

specification/app/resource-manager/Microsoft.App/preview/2022-06-01-preview/examples/ManagedEnvironments_CreateOrUpdate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"customDomainConfiguration": {
2828
"dnsSuffix": "www.my-name.com",
29-
"certificateValue": "PFX-or-PEM-blob",
29+
"certificateValue": "Y2VydA==",
3030
"certificatePassword": "private key password"
3131
},
3232
"workloadProfiles": [

specification/app/resource-manager/Microsoft.App/preview/2022-06-01-preview/examples/ManagedEnvironments_Delete.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
},
99
"responses": {
1010
"200": {},
11-
"202": {},
11+
"202": {
12+
"headers": {
13+
"location": "https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.App/localtions/eastus/operationResults/00000"
14+
}
15+
},
1216
"204": {}
1317
}
1418
}

specification/app/resource-manager/Microsoft.App/preview/2022-06-01-preview/examples/ManagedEnvironments_GetAuthToken.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"subscriptionId": "651f8027-33e8-4ec4-97b4-f6e9f3dc8744",
44
"resourceGroupName": "rg",
55
"environmentName": "testenv",
6-
"api-version": "2022-05-01"
6+
"api-version": "2022-06-01-preview"
77
},
88
"responses": {
99
"200": {

0 commit comments

Comments
 (0)