Skip to content

Commit

Permalink
Added mpon.me domain
Browse files Browse the repository at this point in the history
  • Loading branch information
mpon committed Jul 1, 2020
1 parent 6f48e4b commit 76340ec
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
9 changes: 2 additions & 7 deletions terraform/mpon_me/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ terraform {
}

provider "aws" {
region = "ap-northeast-1"
}

locals {
cluster_size = 1
nginx_service_count = 5
envoy_service_count = 7
region = "ap-northeast-1"
version = "~> 2.68"
}
11 changes: 11 additions & 0 deletions terraform/mpon_me/route53.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
resource "aws_route53_zone" "mpon_me" {
name = "mpon.me."
}

resource "aws_route53_record" "www_mpon_me" {
zone_id = aws_route53_zone.mpon_me.zone_id
name = "www.mpon.me"
type = "CNAME"
ttl = 60
records = ["hatenablog.com"]
}

0 comments on commit 76340ec

Please sign in to comment.