Skip to content

Commit

Permalink
remove www prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcello Romani committed Nov 1, 2023
1 parent cdfa0b0 commit fa8856c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions infra/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ def build_public_read_policy_for_bucket(bucket_name):

# Create s3 bucket to serve static content from
site_s3_bucket = aws.s3.Bucket(
"www.lmgify.net",
bucket="www.lmgify.net",
"lmgify.net",
bucket="lmgify.net",
website=aws.s3.BucketWebsiteArgs(
index_document="index.html",
)
Expand Down Expand Up @@ -76,7 +76,7 @@ def build_public_read_policy_for_bucket(bucket_name):
www_site_record = aws.route53.Record(
"www",
zone_id=lmgify_net_zone.id,
name="www.lmgify.net",
name="lmgify.net",
type="A",
aliases=[
aws.route53.RecordAliasArgs(
Expand Down

0 comments on commit fa8856c

Please sign in to comment.