Skip to content

Commit

Permalink
💚 Fix ponder domain name
Browse files Browse the repository at this point in the history
  • Loading branch information
KONFeature committed Sep 22, 2024
1 parent e9b3880 commit 91b1d24
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions iac/Indexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function IndexerStack({ app, stack }: StackContext) {
name: "indexer-dev",
tag: process.env.PONDER_DEV_IMAGE_TAG,
});
const indexerProdImage = getImageFromName({
const _indexerProdImage = getImageFromName({
stack,
app,
name: "indexer-prod",
Expand Down Expand Up @@ -77,7 +77,7 @@ export function IndexerStack({ app, stack }: StackContext) {
// Build the dev indexer instance
const devIndexer = createServiceConfig({
stack,
serviceName: "PonderIndexerDevService",
serviceName: "Ponder-IndexerDev",
sharedConfig,
typeKey: "indexer",
image: indexerDevImage,
Expand All @@ -88,7 +88,7 @@ export function IndexerStack({ app, stack }: StackContext) {
// Build the dev reader instance
const devReader = createServiceConfig({
stack,
serviceName: "PonderReaderDevService",
serviceName: "Ponder-ReaderDev",
sharedConfig,
typeKey: "reader",
domainKey: "dev",
Expand All @@ -100,7 +100,7 @@ export function IndexerStack({ app, stack }: StackContext) {
// // Build the prod indexer instance
// const prodIndexer = createServiceConfig({
// stack,
// serviceName: "PonderIndexerProdService",
// serviceName: "Ponder-IndexerProd",
// sharedConfig,
// typeKey: "indexer",
// image: indexerProdImage,
Expand All @@ -111,7 +111,7 @@ export function IndexerStack({ app, stack }: StackContext) {
// // Build the prod reader instance
// const prodReader = createServiceConfig({
// stack,
// serviceName: "PonderReaderProdService",
// serviceName: "Ponder-ReaderProd",
// sharedConfig,
// typeKey: "reader",
// domainKey: "prod",
Expand Down Expand Up @@ -157,7 +157,7 @@ function createServiceConfig({
return new Service(stack, serviceName, {
...sharedConfig,
...baseProps[typeKey],
customDomain: domainKey ? domainKey[domainKey] : undefined,
customDomain: domainKey ? domainProps[domainKey] : undefined,
cdk: {
...sharedConfig.cdk,
...baseProps[typeKey].cdk,
Expand Down

0 comments on commit 91b1d24

Please sign in to comment.