Skip to content

Commit

Permalink
Merge pull request #4172 from signalco-io/next
Browse files Browse the repository at this point in the history
feat(infra): Added uier production domain DNS entry
  • Loading branch information
AleksandarDev authored Dec 22, 2023
2 parents 8b0db30 + 81df276 commit 100de2f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions infra/apps/cloud-primary/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist
.turbo
2 changes: 2 additions & 0 deletions infra/apps/remote-browser/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist
.turbo
2 changes: 2 additions & 0 deletions infra/apps/uier/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist
.turbo
2 changes: 1 addition & 1 deletion infra/apps/uier/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const up = async () => {
if (stack === 'next') {
dnsRecord('vercel-uier', 'next', 'cname.vercel-dns.com', 'CNAME', false);
} else if (stack === 'production') {
// TODO: Handle A record for production
dnsRecord('vercel-uier', '@', '76.76.21.21', 'A', false);
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion infra/packages/pulumi/src/cloudflare/dnsRecord.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Config, Input } from '@pulumi/pulumi';
import { Record } from '@pulumi/cloudflare';

export function dnsRecord(name: string, dnsName: Input<string>, value: Input<string>, type: 'CNAME' | 'TXT' | 'MX', protect: boolean) {
export function dnsRecord(name: string, dnsName: Input<string>, value: Input<string>, type: 'CNAME' | 'TXT' | 'MX' | 'A', protect: boolean) {
const config = new Config();
const zoneId = config.requireSecret('zoneid');
return new Record(name, {
Expand Down

7 comments on commit 100de2f

@vercel
Copy link

@vercel vercel bot commented on 100de2f Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-app – ./web/apps/app

signalco-app.vercel.app
signalco-app-signalco.vercel.app
signalco-app-git-main-signalco.vercel.app
app.signalco.io

@vercel
Copy link

@vercel vercel bot commented on 100de2f Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 100de2f Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-slco – ./web/apps/slco

signalco-slco-git-main-signalco.vercel.app
signalco-slco-signalco.vercel.app
slco.signalco.io
signalco-slco.vercel.app
slco.io

@vercel
Copy link

@vercel vercel bot commented on 100de2f Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 100de2f Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-blog – ./web/apps/blog

blog.signalco.io
signalco-blog-signalco.vercel.app
signalco-blog-git-main-signalco.vercel.app
signalco-blog.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 100de2f Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 100de2f Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-uier – ./web/apps/uier

signalco-uier.vercel.app
signalco-uier-git-main-signalco.vercel.app
signalco-uier-signalco.vercel.app
next.uier.io
uier.io

Please sign in to comment.