在 Google Cloud 上创建 Windows 虚拟机时出错:不包含在免费试用版中

在 Google Cloud 上创建 Windows 虚拟机时出错:不包含在免费试用版中

我正在尝试使用以下命令在 Google Cloud 上创建虚拟机:

gcloud compute instances create my-server-1 \
    --zone=europe-west3-b \
    --machine-type=n1-standard-16 \
    --accelerator type=nvidia-tesla-t4-vws,count=1 \
    --maintenance-policy="TERMINATE" \
    --image-project=windows-cloud \
    --image-family=windows-2019 \
    --boot-disk-size=200 \
    --network=default

但是,我收到了以下错误:

ERROR: (gcloud.compute.instances.create) Could not fetch resource:
 - Windows VM instances are not included with the free trial. To use them, first enable billing on your account. You'll still be able to apply your free trial credits to eligible products and services.

我已验证我的项目已启用结算功能,并使用以下命令检查了结算帐户:

myaccount@cloudshell:~ (myproject)$ gcloud beta billing projects describe myproject
billingAccountName: billingAccounts/0X0X0X-0X0X0X-0X0X0X
billingEnabled: true
name: projects/myproject/billingInfo
projectId: myproject
myaccount@cloudshell:~ (myproject)$ gcloud beta billing accounts describe 0X0X0X-0X0X0X-0X0X0X
displayName: My Billing Account
masterBillingAccount: ''
name: billingAccounts/0X0X0X-0X0X0X-0X0X0X
open: true

两个命令都显示计费已启用。我的 Google Cloud 帐户还关联了有效的付款方式。

有人能帮我理解为什么我仍然收到此错误吗?我还需要做其他事情才能在 Google Cloud 上创建 Windows 虚拟机吗?

相关内容