Skip to content

Commit

Permalink
fix number conversion issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpaws committed Sep 16, 2024
1 parent 1c6d95b commit 146d656
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/crossplane-argocd-gitops/management-cluster-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ export default class ManagementClusterBuilder {
common: {
providerConfigAWSName: 'common-provider-config-aws',
eksConnectorRoleName: 'eks-workload-connector-role',
accountId: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION,
accountId: `${process.env.CDK_DEFAULT_ACCOUNT}`,
region: `${process.env.CDK_DEFAULT_REGION}`,
crossplaneNamespace: 'upbound-system'
}
},
},
}),
];

Expand Down

0 comments on commit 146d656

Please sign in to comment.