minor fixes
This commit is contained in:
parent
fa4b58b88c
commit
406a5e6333
2 changed files with 3 additions and 3 deletions
2
build.py
2
build.py
|
@ -28,7 +28,7 @@ use_plugin("python.distutils")
|
|||
default_task = "publish"
|
||||
|
||||
name = "ddadevops"
|
||||
version = "4.0.0-dev57"
|
||||
version = "4.0.0-dev59"
|
||||
summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud"
|
||||
description = __doc__
|
||||
authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]
|
||||
|
|
|
@ -14,10 +14,10 @@ class Digitalocean(Validateable, CredentialMappingDefault):
|
|||
self.do_spaces_secret_key = inp.get("do_spaces_secret_key")
|
||||
self.do_as_backend = inp.get("do_as_backend", False)
|
||||
self.do_account_name = inp.get("do_account_name", self.stage)
|
||||
self.do_endpoint = inp.get("do_endpoint")
|
||||
self.do_bucket = inp.get("do_bucket")
|
||||
self.do_bucket_key = inp.get("do_bucket_key")
|
||||
self.do_region = inp.get("do_region")
|
||||
self.do_endpoint = inp.get("do_endpoint", "fra1.digitaloceanspaces.com")
|
||||
self.do_region = inp.get("do_region", "eu-central-1")
|
||||
|
||||
def validate(self) -> List[str]:
|
||||
result = []
|
||||
|
|
Loading…
Reference in a new issue