Skip to content

Commit fc2fa34

Browse files
authored
RustConf 2023 CFP
1 parent b9dd95b commit fc2fa34

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

terraform/dns/rustconf.com.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ module "rustconf_com" {
2222
"2020" = ["tildeio.github.io"],
2323
"2021" = ["rustconf-2021.netlify.app"],
2424
"2022" = ["rustconf-2022.netlify.app"],
25-
"cfp" = ["cfp.rustconf.com.herokudns.com"],
2625
}
2726

2827
MX = {

terraform/domain-redirects/redirects.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,21 @@ module "rustconf_com" {
4646
permanent = true
4747
}
4848

49+
module "cfp_rustconf_com" {
50+
source = "./impl"
51+
providers = {
52+
aws = aws
53+
aws.east1 = aws.east1
54+
}
55+
56+
to_host = "sessionize.com"
57+
to_path = "rustconf-2023"
58+
from = [
59+
"cfp.rustconf.com"
60+
]
61+
permanent = false
62+
}
63+
4964
module "arewewebyet_org" {
5065
source = "./impl"
5166
providers = {

0 commit comments

Comments
 (0)