Skip to content

Commit

Permalink
chore: fix a line length lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
SirGitsalot committed Nov 18, 2023
1 parent 08ada53 commit 661f114
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/modules/gcp_sql_ssl_cert.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,8 @@ def fetch_resource(module, link, kind, allow_not_found=True):


def self_link(module):
res = {'project': module.params['project'], 'instance': replace_resource_dict(module.params['instance'], 'name'), 'sha1_fingerprint': module.params['sha1_fingerprint']}
res = {'project': module.params['project'], 'instance': replace_resource_dict(module.params['instance'], 'name'),
'sha1_fingerprint': module.params['sha1_fingerprint']}
return "https://sqladmin.googleapis.com/sql/v1beta4/projects/{project}/instances/{instance}/sslCerts/{sha1_fingerprint}".format(**res)


Expand Down

0 comments on commit 661f114

Please sign in to comment.