зеркало из
1
0
Форкнуть 0
azure-sdk-for-python/sdk/attestation/test-resources.json

82 строки
2.4 KiB
JSON
Исходник Постоянная ссылка Обычный вид История

Create Initial cut at an early preview (machine generated) version of python SDK. (#15712) * Created MAA GA API surface * Added missing files * Updated * Updated track 2 multiapi Python SDK * First cut at Python SDK * Created * Checkpoint * Checkpoint * Checkpoint - get policy test works * Updated with current changes * Renamed more fields * Preview version of Python MAA SDK * Updated readme * CI error fixes * Windows Py38 fix * Missed one last interpolated string * Use preparer decorator instead of original_env * Switched to use decorator throughout * Import x509 module separately * Backed out mgmt changes accidentally included * Updated to match master * Resynced mgmt to exactly match master * Updated - cleaned up recordings directory; fixed several typos * Moved service implementation around * Updated setup.py to reflect new location of SDK * Updates for CI pipeline * mdlint update * Added azuresecurityattestation to ci.yml * Added back __init__.py files * Disable expiration time validation on JWTs * Updated version to 0.1.0-preview. * Version == 1.0.0b1 * More 1.0.0b1 changes * Removed azure-security-nspkg for now * Added azure-security-nspkg to dev requirements * Missed one expiration time check * Manifest and setup.py updates * Added override for dependant package versions * Possibly unconfuse pylint * add data plane library to allowed pylint failures * relative path to namespace package * add security nspkg to shared requirements Co-authored-by: iscai-msft <iscai@microsoft.com>
2020-12-11 04:02:57 +03:00
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"baseName": {
"type": "string",
"defaultValue": "[resourceGroup().name]",
"metadata": {
"description": "The base resource name."
}
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "The location of the resource. By default, this is the same as the resource group."
}
},
"storageEndpointSuffix": {
"type": "string",
"defaultValue": "core.windows.net",
"metadata": {
"description": "The url suffix to use when accessing the storage data plane."
}
},
Create Initial cut at an early preview (machine generated) version of python SDK. (#15712) * Created MAA GA API surface * Added missing files * Updated * Updated track 2 multiapi Python SDK * First cut at Python SDK * Created * Checkpoint * Checkpoint * Checkpoint - get policy test works * Updated with current changes * Renamed more fields * Preview version of Python MAA SDK * Updated readme * CI error fixes * Windows Py38 fix * Missed one last interpolated string * Use preparer decorator instead of original_env * Switched to use decorator throughout * Import x509 module separately * Backed out mgmt changes accidentally included * Updated to match master * Resynced mgmt to exactly match master * Updated - cleaned up recordings directory; fixed several typos * Moved service implementation around * Updated setup.py to reflect new location of SDK * Updates for CI pipeline * mdlint update * Added azuresecurityattestation to ci.yml * Added back __init__.py files * Disable expiration time validation on JWTs * Updated version to 0.1.0-preview. * Version == 1.0.0b1 * More 1.0.0b1 changes * Removed azure-security-nspkg for now * Added azure-security-nspkg to dev requirements * Missed one expiration time check * Manifest and setup.py updates * Added override for dependant package versions * Possibly unconfuse pylint * add data plane library to allowed pylint failures * relative path to namespace package * add security nspkg to shared requirements Co-authored-by: iscai-msft <iscai@microsoft.com>
2020-12-11 04:02:57 +03:00
"isolatedSigningCertificate": {
"type": "string",
"defaultValue": ""
},
"locationShortName": {
"type": "string",
"defaultValue": ""
}
},
"variables": {
"isolatedTenantName": "[concat('py', concat(parameters('baseName'), 'iso'))]",
"aadTenantName": "[concat('py', concat(parameters('baseName'), 'aad'))]",
"isolatedUri": "[format('https://{0}.{1}.attest.azure.net', variables('isolatedTenantName'), parameters('locationShortName'))]",
"aadUri": "[format('https://{0}.{1}.attest.azure.net', variables('aadTenantName'), parameters('locationShortName'))]",
"PolicySigningCertificates": {
"PolicySigningCertificates": {
"keys": [
{
"kty": "RSA",
"use": "sig",
"x5c": [ "[parameters('isolatedSigningCertificate')]" ]
}
]
}
}
},
"resources": [
{
"type": "Microsoft.Attestation/attestationProviders",
"apiVersion": "2020-10-01",
"name": "[variables('aadTenantName')]",
"location": "[parameters('location')]"
Create Initial cut at an early preview (machine generated) version of python SDK. (#15712) * Created MAA GA API surface * Added missing files * Updated * Updated track 2 multiapi Python SDK * First cut at Python SDK * Created * Checkpoint * Checkpoint * Checkpoint - get policy test works * Updated with current changes * Renamed more fields * Preview version of Python MAA SDK * Updated readme * CI error fixes * Windows Py38 fix * Missed one last interpolated string * Use preparer decorator instead of original_env * Switched to use decorator throughout * Import x509 module separately * Backed out mgmt changes accidentally included * Updated to match master * Resynced mgmt to exactly match master * Updated - cleaned up recordings directory; fixed several typos * Moved service implementation around * Updated setup.py to reflect new location of SDK * Updates for CI pipeline * mdlint update * Added azuresecurityattestation to ci.yml * Added back __init__.py files * Disable expiration time validation on JWTs * Updated version to 0.1.0-preview. * Version == 1.0.0b1 * More 1.0.0b1 changes * Removed azure-security-nspkg for now * Added azure-security-nspkg to dev requirements * Missed one expiration time check * Manifest and setup.py updates * Added override for dependant package versions * Possibly unconfuse pylint * add data plane library to allowed pylint failures * relative path to namespace package * add security nspkg to shared requirements Co-authored-by: iscai-msft <iscai@microsoft.com>
2020-12-11 04:02:57 +03:00
},
{
"type": "Microsoft.Attestation/attestationProviders",
"apiVersion": "2020-10-01",
"name": "[variables('isolatedTenantName')]",
"location": "[parameters('location')]",
"properties": "[variables('PolicySigningCertificates')]"
}
],
"outputs": {
"ATTESTATION_STORAGE_ENDPOINT_SUFFIX": {
"type": "string",
"value": "[parameters('storageEndpointSuffix')]"
},
Create Initial cut at an early preview (machine generated) version of python SDK. (#15712) * Created MAA GA API surface * Added missing files * Updated * Updated track 2 multiapi Python SDK * First cut at Python SDK * Created * Checkpoint * Checkpoint * Checkpoint - get policy test works * Updated with current changes * Renamed more fields * Preview version of Python MAA SDK * Updated readme * CI error fixes * Windows Py38 fix * Missed one last interpolated string * Use preparer decorator instead of original_env * Switched to use decorator throughout * Import x509 module separately * Backed out mgmt changes accidentally included * Updated to match master * Resynced mgmt to exactly match master * Updated - cleaned up recordings directory; fixed several typos * Moved service implementation around * Updated setup.py to reflect new location of SDK * Updates for CI pipeline * mdlint update * Added azuresecurityattestation to ci.yml * Added back __init__.py files * Disable expiration time validation on JWTs * Updated version to 0.1.0-preview. * Version == 1.0.0b1 * More 1.0.0b1 changes * Removed azure-security-nspkg for now * Added azure-security-nspkg to dev requirements * Missed one expiration time check * Manifest and setup.py updates * Added override for dependant package versions * Possibly unconfuse pylint * add data plane library to allowed pylint failures * relative path to namespace package * add security nspkg to shared requirements Co-authored-by: iscai-msft <iscai@microsoft.com>
2020-12-11 04:02:57 +03:00
"ATTESTATION_ISOLATED_URL": {
"type": "string",
"value": "[variables('isolatedUri')]"
},
"ATTESTATION_AAD_URL": {
"type": "string",
"value": "[variables('aadUri')]"
}
}
}