provide stage & module for tf
This commit is contained in:
parent
5a376ada87
commit
d9f6298bb5
2 changed files with 7 additions and 14 deletions
|
@ -4,7 +4,7 @@ terraform, dda-pallet, aws & hetzner-cloud.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from .meissa_build import meissa_init_project, stage, hetzner_api_key, tf_import_name, tf_import_resource
|
from .meissa_build import meissa_init_project, stage, module, hetzner_api_key, tf_import_name, tf_import_resource, project_dict
|
||||||
from .dda_pallet import dda_write_target, dda_write_domain, dda_uberjar
|
from .dda_pallet import dda_write_target, dda_write_domain, dda_uberjar
|
||||||
from .terraform import tf_copy_common, tf_plan, tf_import, tf_apply, tf_output, tf_destroy, tf_read_output_json
|
from .terraform import tf_copy_common, tf_plan, tf_import, tf_apply, tf_output, tf_destroy, tf_read_output_json
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
from os import path
|
from os import path
|
||||||
from json import load
|
from json import load
|
||||||
from subprocess import call
|
from subprocess import call
|
||||||
from .meissa_build import stage, hetzner_api_key, tf_import_name, tf_import_resource
|
from .meissa_build import stage, project_dict, tf_import_name, tf_import_resource
|
||||||
from .python_util import execute
|
from .python_util import execute
|
||||||
from python_terraform import *
|
from python_terraform import *
|
||||||
|
|
||||||
|
@ -15,17 +15,18 @@ def tf_copy_common(base_path):
|
||||||
def tf_plan(project):
|
def tf_plan(project):
|
||||||
init(project)
|
init(project)
|
||||||
tf = Terraform(working_dir='.')
|
tf = Terraform(working_dir='.')
|
||||||
tf.plan(capture_output=False, var=get_hetzner_api_key_as_dict(project))
|
tf.plan(capture_output=False, var=project_dict(project))
|
||||||
|
|
||||||
def tf_import(project):
|
def tf_import(project):
|
||||||
init(project)
|
init(project)
|
||||||
tf = Terraform(working_dir='.')
|
tf = Terraform(working_dir='.')
|
||||||
tf.import_cmd(capture_output=False, var=get_hetzner_api_key_as_dict(project), tf_import_name(project), tf_import_resource(project))
|
tf.import_cmd(tf_import_name(project), tf_import_resource(project), \
|
||||||
|
capture_output=False, var=project_dict(project))
|
||||||
|
|
||||||
def tf_apply(project, p_auto_approve=False):
|
def tf_apply(project, p_auto_approve=False):
|
||||||
init(project)
|
init(project)
|
||||||
tf = Terraform(working_dir='.')
|
tf = Terraform(working_dir='.')
|
||||||
tf.apply(capture_output=False, auto_approve=p_auto_approve, var=get_hetzner_api_key_as_dict(project))
|
tf.apply(capture_output=False, auto_approve=p_auto_approve, var=project_dict(project))
|
||||||
tf_output(project)
|
tf_output(project)
|
||||||
|
|
||||||
def tf_output(project):
|
def tf_output(project):
|
||||||
|
@ -36,7 +37,7 @@ def tf_output(project):
|
||||||
|
|
||||||
def tf_destroy(project, p_auto_approve=False):
|
def tf_destroy(project, p_auto_approve=False):
|
||||||
tf = Terraform(working_dir='.')
|
tf = Terraform(working_dir='.')
|
||||||
tf.destroy(capture_output=False, auto_approve=p_auto_approve, var=get_hetzner_api_key_as_dict(project))
|
tf.destroy(capture_output=False, auto_approve=p_auto_approve, var=project_dict(project))
|
||||||
|
|
||||||
def tf_read_output_json():
|
def tf_read_output_json():
|
||||||
with open(OUTPUT_JSON, 'r') as f:
|
with open(OUTPUT_JSON, 'r') as f:
|
||||||
|
@ -49,11 +50,3 @@ def init(project):
|
||||||
tf.workspace('select', stage(project))
|
tf.workspace('select', stage(project))
|
||||||
except:
|
except:
|
||||||
tf.workspace('new', stage(project))
|
tf.workspace('new', stage(project))
|
||||||
|
|
||||||
def get_hetzner_api_key_as_dict(project):
|
|
||||||
my_hetzner_api_key = hetzner_api_key(project)
|
|
||||||
ret = {}
|
|
||||||
if my_hetzner_api_key:
|
|
||||||
ret['hetzner_api_key'] = my_hetzner_api_key
|
|
||||||
return ret
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue