fix for credentials-service
This commit is contained in:
parent
e51d2ec2a4
commit
76fd45e2dd
3 changed files with 7 additions and 7 deletions
2
build.py
2
build.py
|
@ -28,7 +28,7 @@ use_plugin("python.distutils")
|
|||
default_task = "publish"
|
||||
|
||||
name = "ddadevops"
|
||||
version = "4.0.0-dev33"
|
||||
version = "4.0.0-dev35"
|
||||
summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud"
|
||||
description = __doc__
|
||||
authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]
|
||||
|
|
|
@ -2,8 +2,8 @@ from os import environ
|
|||
from pybuilder.core import task, init
|
||||
from ddadevops import *
|
||||
|
||||
name = "clojure"
|
||||
MODULE = "docker"
|
||||
name = "ddabuild"
|
||||
MODULE = "clojure"
|
||||
PROJECT_ROOT_PATH = "../.."
|
||||
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ from pathlib import Path
|
|||
from .common import Devops, MixinType
|
||||
from .devops_factory import DevopsFactory
|
||||
from .version import Version
|
||||
from .infrastructure import (
|
||||
BuildFileRepository
|
||||
from ..infrastructure import (
|
||||
GopassApi, EnvironmentApi
|
||||
)
|
||||
|
||||
class CredentialsService:
|
||||
|
@ -12,8 +12,8 @@ class CredentialsService:
|
|||
@classmethod
|
||||
def prod(cls):
|
||||
return cls(
|
||||
DevopsFactory(),
|
||||
BuildFileRepository(base_dir),
|
||||
GopassApi(),
|
||||
EnvironmentApi()
|
||||
)
|
||||
|
||||
def initialize(self, input: dict) -> Devops:
|
||||
|
|
Loading…
Reference in a new issue