Skip to content

Commit ce5e430

Browse files
committed
EB fixes.
1 parent 9ac201c commit ce5e430

File tree

5 files changed

+36
-41
lines changed

5 files changed

+36
-41
lines changed

.ebextensions/21-logs.config

-5
This file was deleted.

.ebextensions/30-certbot.config

+31-31
Original file line numberDiff line numberDiff line change
@@ -10,34 +10,34 @@
1010

1111
# Once you have the cert and the symlink is set up, update nginx.conf to use it.
1212

13-
files:
14-
/opt/certbot-renew:
15-
mode: "000755"
16-
owner: root
17-
group: root
18-
content: |
19-
#!/bin/bash -e
20-
# Sleep randomly, up to 10 minutes, to make it less likely that two servers try to renew at the same time
21-
sleep $(($RANDOM%600))
22-
/opt/certbot-auto renew --debug
23-
# Reload the nginx configuration every time, since there may be multiple servers running. Using --renew-hook would only fix the server that made the renewal.
24-
service nginx reload
25-
26-
/etc/cron.d/certbot:
27-
mode: "000644"
28-
owner: root
29-
group: root
30-
content: |
31-
@daily root /opt/certbot-renew
32-
33-
container_commands:
34-
"01":
35-
command: |
36-
wget -O certbot-auto https://dl.eff.org/certbot-auto
37-
chmod a+x certbot-auto
38-
./certbot-auto --debug --install-only --non-interactive
39-
cwd: /opt
40-
test: test ! -f /opt/certbot-auto
41-
"02":
42-
command: mkdir -p /var/acme-challenges
43-
test: test ! -d /var/acme-challenges
13+
# files:
14+
# /opt/certbot-renew:
15+
# mode: "000755"
16+
# owner: root
17+
# group: root
18+
# content: |
19+
# #!/bin/bash -e
20+
# # Sleep randomly, up to 10 minutes, to make it less likely that two servers try to renew at the same time
21+
# sleep $(($RANDOM%600))
22+
# /opt/certbot-auto renew --debug
23+
# # Reload the nginx configuration every time, since there may be multiple servers running. Using --renew-hook would only fix the server that made the renewal.
24+
# service nginx reload
25+
#
26+
# /etc/cron.d/certbot:
27+
# mode: "000644"
28+
# owner: root
29+
# group: root
30+
# content: |
31+
# @daily root /opt/certbot-renew
32+
#
33+
# container_commands:
34+
# "01":
35+
# command: |
36+
# wget -O certbot-auto https://dl.eff.org/certbot-auto
37+
# chmod a+x certbot-auto
38+
# ./certbot-auto --debug --install-only --non-interactive
39+
# cwd: /opt
40+
# test: test ! -f /opt/certbot-auto
41+
# "02":
42+
# command: mkdir -p /var/acme-challenges
43+
# test: test ! -d /var/acme-challenges

.ebextensions/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ First of all, make sure you are running the latest version of the eb cli:
55
pip3 install -U --user awscli awsebcli
66
```
77

8-
If you are using the free tier, then use a t2.micro instance. If not, you can use a t3.nano or t3a.nano with spot to get the lowest price.
8+
Use a t2.micro instance if you are using the AWS free tier. Otherwise, use t3.nano or t3a.nano with spot to get the lowest price.
99

1010
Create environment:
1111
```
12-
git tag -a -m "First deploy" eb-v1
12+
git tag -f -a -m "First deploy" eb
1313
eb init rssbox --platform "Ruby 2.6 (Puma)" --keyname id_rsa
14-
eb create --single --instance-types t2.micro
14+
eb create --single --instance_type t2.micro
1515
```
1616

1717
Using spot instances:

.ebextensions/resources.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# aws cloudformation get-template --stack-name "awseb-${env_id}-stack" --query TemplateBody > template.json
77

88
# Get parameters:
9-
# aws cloudformation describe-stack-resource --stack-name awseb-e-rm3jns32ap-stack --logical-resource-id AWSEBBeanstalkMetadata --query StackResourceDetail.Metadata --output text | jq
9+
# aws cloudformation describe-stack-resource --stack-name "awseb-${env_id}-stack" --logical-resource-id AWSEBBeanstalkMetadata --query StackResourceDetail.Metadata --output text | jq
1010

1111
Resources:
1212
AWSEBAutoScalingGroup:

bin/eb-deploy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash -e
2-
# eb has issues deploying if the latest tag has a slash in it.. annoying since my heroku deploy tags have slashes, e.g. heroku/v123
2+
# eb has issues deploying if the most recent tag has a slash in it.. annoying since my heroku deploy tags have slashes, e.g. heroku/v123
33
label=$(date -u '+%FT%TZ')
44

55
set -x

0 commit comments

Comments
 (0)