use dda_python_terraform instead of outdated ver
This commit is contained in:
parent
d1747e9de6
commit
809de87401
5 changed files with 6 additions and 6 deletions
|
@ -3,4 +3,4 @@ FROM docker:latest
|
|||
RUN set -eux;
|
||||
RUN apk add --no-cache build-base rust python3 python3-dev py3-pip py3-setuptools py3-wheel libffi-dev openssl-dev cargo;
|
||||
RUN python3 -m pip install -U pip;
|
||||
RUN pip3 install pybuilder ddadevops deprecation python-terraform boto3 mfa;
|
||||
RUN pip3 install pybuilder ddadevops deprecation dda-python-terraform boto3 mfa;
|
|
@ -1,4 +1,4 @@
|
|||
from python_terraform import *
|
||||
from dda_python_terraform import *
|
||||
from .devops_terraform_build import DevopsTerraformBuild, Terraform
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from python_terraform import *
|
||||
from dda_python_terraform import *
|
||||
from boto3 import *
|
||||
from .python_util import execute
|
||||
from .aws_backend_properties_mixin import AwsBackendPropertiesMixin
|
||||
|
|
|
@ -30,7 +30,7 @@ class DevopsDockerBuild(DevopsBuild):
|
|||
|
||||
def __init__(self, project, config):
|
||||
super().__init__(project, config)
|
||||
project.build_depends_on('python-terraform')
|
||||
project.build_depends_on('dda-python-terraform')
|
||||
self.dockerhub_user = config['dockerhub_user']
|
||||
self.dockerhub_password = config['dockerhub_password']
|
||||
self.use_package_common_files = config['use_package_common_files']
|
||||
|
|
|
@ -2,7 +2,7 @@ from os import path
|
|||
from json import load, dumps
|
||||
from subprocess import run
|
||||
from pkg_resources import *
|
||||
from python_terraform import *
|
||||
from dda_python_terraform import *
|
||||
from .python_util import filter_none
|
||||
from .devops_build import DevopsBuild, create_devops_build_config
|
||||
import sys
|
||||
|
@ -38,7 +38,7 @@ class DevopsTerraformBuild(DevopsBuild):
|
|||
|
||||
def __init__(self, project, config):
|
||||
super().__init__(project, config)
|
||||
project.build_depends_on('python-terraform')
|
||||
project.build_depends_on('dda-python-terraform')
|
||||
self.additional_vars = config['additional_vars']
|
||||
self.output_json_name = config['output_json_name']
|
||||
self.use_workspace = config['use_workspace']
|
||||
|
|
Loading…
Reference in a new issue