-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhosting.ts
46 lines (41 loc) · 1.32 KB
/
hosting.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { IAMClient } from '@aws-sdk/client-iam'
import chalk from 'chalk'
import pJSON from '../package.json' with { type: 'json' }
import { HostingApp } from './HostingApp.js'
import { ensureGitHubOIDCProvider } from './ensureGitHubOIDCProvider.js'
const iam = new IAMClient({})
const stackName = process.env.STACK_NAME ?? 'hello-nrfcloud-web'
const certificateId =
process.env.CERTIFICATE_ID ?? 'b4faa8c2-7e5e-4f5a-8e34-b227d0d8ef67'
const domainName = process.env.DOMAIN_NAME ?? 'hello.nrfcloud.com'
const repoUrl = new URL(pJSON.repository.url)
const repository = {
owner: repoUrl.pathname.split('/')[1] ?? 'hello-nrfcloud',
repo: repoUrl.pathname.split('/')[2]?.replace(/\.git$/, '') ?? 'web',
}
const mapRepository = {
...repository,
repo: 'map',
}
for (const [k, v] of Object.entries({
Domain: domainName,
'Certificate ID': certificateId,
'Web App Owner': repository.owner,
'Web App Repo': repository.repo,
'Map Owner': mapRepository.owner,
'Map Repo': mapRepository.repo,
})) {
console.debug(chalk.magenta(k), chalk.green(v))
}
new HostingApp(stackName, {
repository,
mapRepository,
customDomain:
domainName !== undefined && certificateId !== undefined
? { certificateId, domainName }
: undefined,
region: process.env.AWS_REGION ?? 'eu-west-1',
gitHubOICDProviderArn: await ensureGitHubOIDCProvider({
iam,
}),
})