mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-20 07:19:20 +01:00
feat(tf): terraform state new
This commit is contained in:
parent
a75ea6b08f
commit
e31777bf5b
@ -1,12 +1,40 @@
|
||||
<template>
|
||||
<div></div>
|
||||
<div v-if="state">
|
||||
<pre>
|
||||
<code>{{ state.state }}</code>
|
||||
</pre>
|
||||
</div>
|
||||
<div v-else-if="error">{{ error.message }}</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import axios from 'axios';
|
||||
|
||||
export default {
|
||||
props: {
|
||||
projectId: Number,
|
||||
inventoryId: Number,
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
state: null,
|
||||
error: null,
|
||||
};
|
||||
},
|
||||
|
||||
async created() {
|
||||
try {
|
||||
this.state = (await axios.get(`/api/project/${this.projectId}/inventory/${this.inventoryId}/terraform/states/latest`)).data;
|
||||
} catch (e) {
|
||||
if (e.response.status === 404) {
|
||||
this.error = {
|
||||
message: 'No state available.',
|
||||
};
|
||||
} else {
|
||||
this.error = e;
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
@ -3,15 +3,15 @@
|
||||
|
||||
<EditDialog
|
||||
v-model="editDialog"
|
||||
:save-button-text="alias === 'new' ? $t('create') : $t('save')"
|
||||
:title="`${alias === 'new' ? $t('nnew') : $t('edit')} Key`"
|
||||
:save-button-text="aliasId === 'new' ? $t('create') : $t('save')"
|
||||
:title="`${aliasId === 'new' ? $t('nnew') : $t('edit')} Key`"
|
||||
:max-width="450"
|
||||
@save="loadAliases()"
|
||||
>
|
||||
<template v-slot:form="{ onSave, onError, needSave, needReset }">
|
||||
<TerraformAliasForm
|
||||
:project-id="template.project_id"
|
||||
:item-id="alias"
|
||||
:item-id="aliasId"
|
||||
:inventory-id="template.inventory_id"
|
||||
@save="onSave"
|
||||
@error="onError"
|
||||
@ -20,6 +20,7 @@
|
||||
/>
|
||||
</template>
|
||||
</EditDialog>
|
||||
|
||||
<YesNoDialog
|
||||
:title="$t('deleteInventory')"
|
||||
:text="$t('askDeleteInv')"
|
||||
@ -198,6 +199,7 @@
|
||||
</div>
|
||||
|
||||
<TerraformStateView
|
||||
class="pl-4 pt-4"
|
||||
v-if="premiumFeatures.terraform_backend"
|
||||
:project-id="template.project_id"
|
||||
:inventory-id="template.inventory_id"
|
||||
@ -253,7 +255,7 @@ export default {
|
||||
inventoryId: null,
|
||||
deleteInventoryDialog: null,
|
||||
attachInventoryDialog: null,
|
||||
alias: null,
|
||||
aliasId: null,
|
||||
editDialog: null,
|
||||
};
|
||||
},
|
||||
@ -357,12 +359,12 @@ export default {
|
||||
},
|
||||
|
||||
editAlias(alias) {
|
||||
this.alias = alias;
|
||||
this.aliasId = alias;
|
||||
this.editDialog = true;
|
||||
},
|
||||
|
||||
async addAlias() {
|
||||
this.alias = 'new';
|
||||
this.aliasId = 'new';
|
||||
this.editDialog = true;
|
||||
},
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user