2016-07-20 10 views
1

Azure-Cli(バージョン0.10.2)からdocumentDbを配備しようとしていますので、Azureポータルから直接テンプレートをエクスポートしました。で「値」の結果にそれらを変更ARMテンプレートの 'type'プロパティが必要です

InvalidRequestContent : The request content was invalid and could not be deserialized: 'Could not find member 'defaultValue' on object of type 'DeploymentParameterDefinition'. Path 'properties.parameters.arm_document_db.defaultValue'

これは誤差が生じ、このページをチェックし

InvalidDeploymentParameterType : The type of deployment parameter 'arm_document_db' should not be specified. Please see https://aka.ms/arm-deploy/#parameter-file for details.

型が必要であることを示しますが、すべて小文字です。これは同じエラーをもたらしました。 「タイプ」を削除

その後、私は、このエラーを与える:

InvalidRequestContent : The request content was invalid and could not be deserialized: 'Required property 'type' not found in JSON. Path 'properties.template.parameters.arm_document_db'

{ 
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", 
"contentVersion": "1.0.0.0", 
"parameters": { 
    "arm_document_db": { 
     "defaultValue": null, 
     "type": "SecureString" 
    }, 
    "arm_document_db01": { 
     "defaultValue": "arm-document-db01", 
     "type": "String" 
    } 
}, 
"variables": {}, 
"resources": [ 
    { 
     "type": "Microsoft.DocumentDB/databaseAccounts", 
     "kind": "DocumentDB", 
     "name": "[parameters('arm_document_db01')]", 
     "apiVersion": "2015-04-08", 
     "location": "Japan West", 
     "tags": {}, 
     "properties": { 
      "databaseAccountOfferType": "Standard", 
      "name": "[parameters('arm_document_db')]" 
     }, 
     "dependsOn": [] 
    } 
] 
} 

aka.msリンクを「タイプ」が必要であることを示している、しかしエラーはそれがないことを言います。事前に多くの感謝!

答えて

0

エラーはazuredeploy.jsonでは発生しません。これはazuredeploy.parameters.jsonのためのものです。 パラメータファイルから "type"フィールドを削除します。

関連する問題