Welcome to mirror list, hosted at ThFree Co, Russian Federation.

eks_cluster_configuration_form.vue « components « eks_cluster « create_cluster « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ec45c8b6518887a25014ec5deff28e55ed9cf35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
import RoleNameDropdown from './role_name_dropdown.vue';
import SecurityGroupDropdown from './security_group_dropdown.vue';
import SubnetDropdown from './subnet_dropdown.vue';
import VPCDropdown from './vpc_dropdown.vue';

export default {
  components: {
    RoleNameDropdown,
    SecurityGroupDropdown,
    SubnetDropdown,
    VPCDropdown,
  },
};
</script>
<template>
  <form name="eks-cluster-configuration-form"></form>
</template>