From dca2fd9e4ef0d117abd1467158fac8789bd627bd Mon Sep 17 00:00:00 2001 From: Gord Nuttall Date: Sat, 16 Jan 2021 01:29:00 -0700 Subject: [PATCH] - added pubsub permissions --- README.md | 6 +++--- dmt_pubsub_topic.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 928096f..a2559c0 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Google Analytics 360 Flattener. A Google Cloud Platform (GCP) solution that unn 2. Enable the Cloud Build API 3. Enable the Cloud Functions API 4. Enable the Identity and Access Management (IAM) API -5. Add "Logs Configuration Writer", "Cloud Functions Developer" pre +5. Add "Logs Configuration Writer", "Cloud Functions Developer", "pub/sub Admin" pre defined IAM roles to [PROJECT_NUMBER]@cloudservices.gserviceaccount.com (built in service account) otherwise deployment will fail with permission errors. See @@ -79,8 +79,8 @@ Google Analytics 360 Flattener. A Google Cloud Platform (GCP) solution that unn * ga_flat_sessions_(x) ## Un-install steps ## -1. Optional command to remove solution: gcloud deployment-manager - deployments delete [Deployment Name] -q +1. Optional command to remove solution: + * gcloud deployment-manager deployments delete [Deployment Name] -q ## Common install errors ## 1. * **Message:** Step #2: AccessDeniedException: 403 [PROJECT_NUMBER]@cloudbuild.gserviceaccount.com does not have storage.objects.list access to the Google Cloud Storage bucket. diff --git a/dmt_pubsub_topic.py b/dmt_pubsub_topic.py index 779b056..91275b4 100644 --- a/dmt_pubsub_topic.py +++ b/dmt_pubsub_topic.py @@ -6,7 +6,7 @@ def GenerateConfig(ctx): resources = { 'resources': [{ 'name': 'topic-name', - 'type': 'gcp-types/pubsub-v1:projects.topics', + 'type': 'pubsub.v1.topic', 'properties': { 'topic': config.get_topic_name() },