mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
pubsub topic string build correctly (#261)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
670a9b2222
commit
c7000960d1
1 changed files with 1 additions and 1 deletions
|
@ -484,7 +484,7 @@ def decode_request(response, module):
|
|||
|
||||
|
||||
def encode_request(request, module):
|
||||
request['topic'] = '/'.join(['projects', module.params['project'], 'topics', request['topic']])
|
||||
request['topic'] = '/'.join(['projects', module.params['project'], 'topics', replace_resource_dict(request['topic'], 'name')])
|
||||
request['name'] = '/'.join(['projects', module.params['project'], 'subscriptions', module.params['name']])
|
||||
|
||||
return request
|
||||
|
|
Loading…
Add table
Reference in a new issue