Skip to main content

All Questions

0 votes
1 answer
379 views

How to create resource level permissions for GCP service accounts

I want to have a service account on Google Cloud that can only write objects to a specific storage Cloud Storage bucket. I have already created the service account using deployment manager and now try ...
LlamaD's user avatar
  • 422
0 votes
3 answers
502 views

403 forbidden when trying to create a bucket using Deployment Manager

I am trying to create a GCS bucket using Deployment Manager using the following resource config: resources: - type: storage.v1.bucket name: upload-bucket properties: project: <project-id&...
tomphp's user avatar
  • 307
1 vote
1 answer
302 views

Creating domain Storage Buckets

message: '{"ResourceType":"storage.v1.bucket","ResourceErrorCode":"403","ResourceErrorMessage":{"code":403,"errors":[{"domain":"global","message":"The bucket you tried to create requires domain ...
Dean Christian Armada's user avatar
0 votes
1 answer
1k views

Deployment Manager, how to obtain google storage service account in resource file

I use Deployment Manager and try to describe my resources in python files ( Deployment Manager allows to create configuration using Python or Jinja). Actually, I use json-format for topic-resource's ...
Nazar  Kazymov's user avatar
8 votes
1 answer
15k views

GCP Deployment Manager: 403 does not have storage.buckets.get access

I am trying to create a bucket using Deployment manager but when I want to create the deployment, I get the following error: ERROR: (gcloud.deployment-manager.deployments.create) Error in Operation [...
Jan's user avatar
  • 1,298
2 votes
1 answer
1k views

How to write a file to Google Cloud Storage using Deployment Manager?

I see in the list of Supported Resource Types that Google Cloud Deployment Manager has at least some support for the storage.v1.object type. I'm hoping this gives me the ability to write files to GCS ...
wolak's user avatar
  • 739
0 votes
2 answers
2k views

Create a folder inside a GCS bucket with Deployment Manager

I have created a bucket with DM using the below code resources: - type: storage.v1.bucket name: test-bucket properties: project: my-project name: test-bucket Now, ...
Radhika's user avatar
  • 23
3 votes
2 answers
1k views

Google Cloud Deployment Manager: How to set up IAM when creating bucket

I have created a bucket with Google Cloud Deployment Manager ( see below ) but the permissions part is ignored and I could not find any example of setting IAM on while using Google Cloud Deployment ...
Hector Cuevas's user avatar