minor fix
This commit is contained in:
parent
cf605d4198
commit
7ba01f3ee4
3 changed files with 18 additions and 4 deletions
2
build.py
2
build.py
|
@ -28,7 +28,7 @@ use_plugin("python.distutils")
|
|||
default_task = "publish"
|
||||
|
||||
name = "ddadevops"
|
||||
version = "4.0.0-dev63"
|
||||
version = "4.0.0-dev64"
|
||||
summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud"
|
||||
description = __doc__
|
||||
authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]
|
||||
|
|
|
@ -4,12 +4,17 @@ terraform, dda-pallet, aws & hetzner-cloud.
|
|||
|
||||
"""
|
||||
|
||||
from .domain import DnsRecord, BuildType, MixinType, ReleaseType, ProviderType
|
||||
from .provs_k3s_build import ProvsK3sBuild
|
||||
#from .aws_mfa_mixin import AwsMfaMixin, add_aws_mfa_mixin_config
|
||||
|
||||
# from .aws_mfa_mixin import AwsMfaMixin, add_aws_mfa_mixin_config
|
||||
from .c4k_build import C4kBuild
|
||||
from .hetzner_mixin import HetznerMixin, add_hetzner_mixin_config
|
||||
from .devops_image_build import DevopsImageBuild
|
||||
from .devops_terraform_build import DevopsTerraformBuild, create_devops_terraform_build_config
|
||||
from .devops_terraform_build import (
|
||||
DevopsTerraformBuild,
|
||||
create_devops_terraform_build_config,
|
||||
)
|
||||
from .devops_build import DevopsBuild, create_devops_build_config, get_devops_build
|
||||
from .credential import gopass_password_from_path, gopass_field_from_path
|
||||
from .release_mixin import ReleaseMixin
|
||||
|
|
|
@ -1,4 +1,13 @@
|
|||
from .common import Validateable, CredentialMappingDefault, DnsRecord, Devops, BuildType, MixinType, ReleaseType, ProviderType
|
||||
from .common import (
|
||||
Validateable,
|
||||
CredentialMappingDefault,
|
||||
DnsRecord,
|
||||
Devops,
|
||||
BuildType,
|
||||
MixinType,
|
||||
ReleaseType,
|
||||
ProviderType,
|
||||
)
|
||||
from .devops_factory import DevopsFactory
|
||||
from .image import Image
|
||||
from .c4k import C4k
|
||||
|
|
Loading…
Reference in a new issue