Skip to content

Commit

Permalink
refactor(environment): flatten structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Harjot1Singh committed Sep 30, 2023
1 parent 5ca1f19 commit 99d6928
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions environment/cluster/index.ts → environment/cluster.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { listManagedClusterUserCredentialsOutput, ManagedCluster } from '@pulumi/azure-native/containerservice'
import { Provider } from '@pulumi/kubernetes'

import identity from '../identity'
import logging from '../logging'
import network from '../network'
import identity from './identity'
import logging from './logging'
import network from './network'

type Options = {
identity: Awaited<ReturnType<typeof identity>>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ActionsOrganizationSecret } from '@pulumi/github'

import * as environment from '~/helpers/environment'

import cluster from '../cluster'
import cluster from './cluster'

type Options = {
cluster: Awaited<ReturnType<typeof cluster>>,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion environment/logging/index.ts → environment/logging.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Workspace } from '@pulumi/azure-native/operationalinsights'

import identity from '../identity'
import identity from './identity'

type Options = {
identity: Awaited<ReturnType<typeof identity>>,
Expand Down
2 changes: 1 addition & 1 deletion environment/network/index.ts → environment/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Subnet, VirtualNetwork } from '@pulumi/azure-native/network'

import azure from '~/helpers/azure'

import identity from '../identity'
import identity from './identity'

type Options = {
azure: Awaited<ReturnType<typeof azure>>,
Expand Down

0 comments on commit 99d6928

Please sign in to comment.