Bicep 오류/경고 코드 - BCP089
이 오류/경고는 속성 이름이 오타인 것처럼 보일 때 발생합니다.
오류/경고 설명
The property <property-name> is not allowed on objects of type <resource-type/type-definition>. Did you mean <property-name>?
솔루션
오타를 수정합니다.
예제
다음 예제에서는 명명된 속성 이름이 오타처럼 보이기 때문에 오류를 발생합니다.
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-05-01' existing = {
named: 'account'
}
오타를 수정하여 오류를 수정할 수 있습니다.
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-05-01' existing = {
name: 'account'
}
다음 예제에서는 속성 이름 color1 이 오타처럼 보이기 때문에 오류를 발생합니다.
type ball = {
name: string
color: string
}
output tennisBall ball = {
name: 'tennis'
color1: 'yellow'
}
오타를 수정하여 오류를 수정할 수 있습니다.
type ball = {
name: string
color: string
}
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
다음 단계
Bicep 오류 및 경고 코드에 대한 자세한 내용은 Bicep 경고 및 오류를 참조 하세요.