File tree 5 files changed +38
-5
lines changed
5 files changed +38
-5
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,20 @@ pre-configured in line with industry best practices and highly efficient running
23
23
24
24
- A domain name either hosted with AWS, or with its DNS delegated to a Route53 hosted zone.
25
25
- A VPC configured with at least one public subnet in your desired deployment region.
26
+ - Desired deployment region ** cannot** be one of the following, as Aurora Serverless v1 is not yet supported there:
27
+ - Africa (Cape Town)
28
+ - Asia Pacific (Hong Kong)
29
+ - Asia Pacific (Osaka)
30
+ - Europe (Milan)
31
+ - Europe (Stockholm)
32
+ - Middle East (Bahrain)
33
+ - South America (São Paulo)
34
+ - AWS GovCloud (US-East)
35
+ - AWS GovCloud (US-West)
36
+ - China (Beijing)
37
+ - China (Ningxia)
38
+
39
+ Alternatives for Aurora Serverless will be supported in a future release.
26
40
27
41
## Provider Set-up
28
42
@@ -153,7 +167,7 @@ resource "null_resource" "update_nameservers" {
153
167
nameservers = aws_route53_zone.apex.id
154
168
}
155
169
provisioner "local-exec" {
156
- command = "aws route53domains update-domain-nameservers --region us-east-1 --domain-name ${local.site_domain} --nameservers Name=${aws_route53_zone.apex.name_servers.0}Name=${aws_route53_zone.apex.name_servers.1} Name=${aws_route53_zone.apex.name_servers.2} Name=${aws_route53_zone.apex.name_servers.3} --profile peterdotcloud"
170
+ command = "aws route53domains update-domain-nameservers --region us-east-1 --domain-name ${local.site_domain} --nameservers Name=${aws_route53_zone.apex.name_servers.0} Name=${aws_route53_zone.apex.name_servers.1} Name=${aws_route53_zone.apex.name_servers.2} Name=${aws_route53_zone.apex.name_servers.3} --profile peterdotcloud"
157
171
}
158
172
depends_on = [aws_route53_zone.apex]
159
173
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.1.2 - 23rd June 2021
4
+
5
+ Bugfix: Changed special characters used in RDS password generation to ensure compatibility.
6
+ Docs: Updated to fix typos in helper commands, and detailed supported RDS Aurora v1 regions.
7
+
3
8
## 0.1.1 - 19th June 2021
4
9
5
10
Bugfix: Refactor md5 calculation on archive_file in codebuild child module.
Original file line number Diff line number Diff line change @@ -24,6 +24,20 @@ pre-configured in line with industry best practices and highly efficient running
24
24
25
25
- A domain name either hosted with AWS, or with its DNS delegated to a Route53 hosted zone.
26
26
- A VPC configured with at least one public subnet in your desired deployment region.
27
+ - Desired deployment region ** cannot** be one of the following, as Aurora Serverless v1 is not yet supported there:
28
+ - Africa (Cape Town)
29
+ - Asia Pacific (Hong Kong)
30
+ - Asia Pacific (Osaka)
31
+ - Europe (Milan)
32
+ - Europe (Stockholm)
33
+ - Middle East (Bahrain)
34
+ - South America (São Paulo)
35
+ - AWS GovCloud (US-East)
36
+ - AWS GovCloud (US-West)
37
+ - China (Beijing)
38
+ - China (Ningxia)
39
+
40
+ Alternatives for Aurora Serverless will be supported in a future release.
27
41
28
42
## Provider Set-up
29
43
@@ -154,7 +168,7 @@ resource "null_resource" "update_nameservers" {
154
168
nameservers = aws_route53_zone.apex.id
155
169
}
156
170
provisioner "local-exec" {
157
- command = "aws route53domains update-domain-nameservers --region us-east-1 --domain-name ${local.site_domain} --nameservers Name=${aws_route53_zone.apex.name_servers.0}Name=${aws_route53_zone.apex.name_servers.1} Name=${aws_route53_zone.apex.name_servers.2} Name=${aws_route53_zone.apex.name_servers.3} --profile peterdotcloud"
171
+ command = "aws route53domains update-domain-nameservers --region us-east-1 --domain-name ${local.site_domain} --nameservers Name=${aws_route53_zone.apex.name_servers.0} Name=${aws_route53_zone.apex.name_servers.1} Name=${aws_route53_zone.apex.name_servers.2} Name=${aws_route53_zone.apex.name_servers.3} --profile peterdotcloud"
158
172
}
159
173
depends_on = [aws_route53_zone.apex]
160
174
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ module "peterdotcloud_vpc" {
13
13
14
14
module "peterdotcloud_website" {
15
15
source = " TechToSpeech/serverless-static-wordpress/aws"
16
- version = " 0.1.0 "
16
+ version = " 0.1.2 "
17
17
main_vpc_id = " vpc-e121c09b"
18
18
subnet_ids = [" subnet-04b97235" , " subnet-08fb235" , " subnet-04b97734" ]
19
19
aws_account_id = data. aws_caller_identity . current . account_id
@@ -80,7 +80,7 @@ resource "null_resource" "update_nameservers" {
80
80
nameservers = aws_route53_zone.apex.id
81
81
}
82
82
provisioner "local-exec" {
83
- command = " aws route53domains update-domain-nameservers --region us-east-1 --domain-name ${ local . site_domain } --nameservers Name=${ aws_route53_zone . apex . name_servers . 0 } Name=${ aws_route53_zone . apex . name_servers . 1 } Name=${ aws_route53_zone . apex . name_servers . 2 } Name=${ aws_route53_zone . apex . name_servers . 3 } --profile peterdotcloud"
83
+ command = " aws route53domains update-domain-nameservers --region us-east-1 --domain-name ${ local . site_domain } --nameservers Name=${ aws_route53_zone . apex . name_servers . 0 } Name=${ aws_route53_zone . apex . name_servers . 1 } Name=${ aws_route53_zone . apex . name_servers . 2 } Name=${ aws_route53_zone . apex . name_servers . 3 } --profile peterdotcloud"
84
84
}
85
85
depends_on = [aws_route53_zone . apex ]
86
86
}
Original file line number Diff line number Diff line change 1
1
resource "random_password" "serverless_wordpress_password" {
2
2
length = 16
3
3
special = true
4
- override_special = " _%@ "
4
+ override_special = " !#%&*()-_=+[]<> "
5
5
}
6
6
7
7
resource "aws_security_group" "aurora_serverless_group" {
You can’t perform that action at this time.
0 commit comments