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

state.js « store « 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: 5007df8ad9507db775e7796c2abdbe0a2238c044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export default () => ({
  serviceCredentials: {
    accessKeyId: '',
    secretAccessKey: '',
  },
  isValidatingCredentials: false,
  validCredentials: false,

  isLoadingRoles: false,
  isLoadingVPCs: false,
  isLoadingSubnets: false,
  isLoadingSecurityGroups: false,

  roles: [],
  vpcs: [],
  subnets: [],
  securityGroups: [],

  selectedRole: '',
  selectedVPC: '',
  selectedSubnet: '',
  selectedSecurityGroup: '',
});