gcloud create instance给出“结算帐户信誉不佳;因此无法创建新实例”。

时间:2014-06-05 09:18:50

标签: google-cloud-sql gcloud

我正在编写一个脚本来启动Google云端sql数据库:

gcloud sql instances create sql_testcustomer --region europe-west1 --tier D1 --quiet

但它给了我以下错误:

ERROR: (gcloud.sql.instances.create) ResponseError: status=403, code=Forbidden, reason=invalidBillingAccountState
message=The billing account is not in good standing; therefore no new instance can be created.

毋庸置疑,我已经广泛搜索了它而没有任何运气。

1 个答案:

答案 0 :(得分:0)

原来这是错误消息与计费无关,而是因为sql实例名称不能有" _"在他们中。从" sql_testcustomer"替换实例名称到" sql-testcustomer"解决了这个问题。