-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add A record for emails. #63
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ran Plan for dir: Plan Error Show Output
|
strugee
force-pushed
the
CloudArtAdmins-patch-1
branch
from
April 10, 2024 00:45
4772687
to
8e1c054
Compare
Plan Error
|
Ran Plan for dir: Show OutputTerraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# module.production_env.aws_route53_record.mailu-server will be created
+ resource "aws_route53_record" "mailu-server" {
+ allow_overwrite = (known after apply)
+ fqdn = (known after apply)
+ id = (known after apply)
+ name = "mail.seagl.org"
+ records = [
+ "mailu.host.seagl.org",
]
+ ttl = 300
+ type = "CNAME"
+ zone_id = "Z0173878287JIU5M4KB8R"
}
Plan: 1 to add, 0 to change, 0 to destroy.
╷
│ Warning: Argument is deprecated
│
│ with aws_s3_bucket.state,
│ on s3.tf line 1, in resource "aws_s3_bucket" "state":
│ 1: resource "aws_s3_bucket" "state" {
│
│ Use the aws_s3_bucket_versioning resource instead
│
│ (and 3 more similar warnings elsewhere)
╵
|
strugee
force-pushed
the
CloudArtAdmins-patch-1
branch
from
April 10, 2024 00:46
8e1c054
to
97a3fc7
Compare
Ran Plan for dir: Show OutputTerraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# module.production_env.aws_route53_record.mailu-server will be created
+ resource "aws_route53_record" "mailu-server" {
+ allow_overwrite = (known after apply)
+ fqdn = (known after apply)
+ id = (known after apply)
+ name = "mail.seagl.org"
+ records = [
+ "mailu.host.seagl.org",
]
+ ttl = 300
+ type = "CNAME"
+ zone_id = "Z0173878287JIU5M4KB8R"
}
Plan: 1 to add, 0 to change, 0 to destroy.
╷
│ Warning: Argument is deprecated
│
│ with aws_s3_bucket.state,
│ on s3.tf line 1, in resource "aws_s3_bucket" "state":
│ 1: resource "aws_s3_bucket" "state" {
│
│ Use the aws_s3_bucket_lifecycle_configuration resource instead
│
│ (and 3 more similar warnings elsewhere)
╵
|
strugee
approved these changes
Apr 10, 2024
atlantis apply |
Ran Apply for dir: module.production_env.aws_route53_record.mailu-server: Creating...
module.production_env.aws_route53_record.mailu-server: Still creating... [10s elapsed]
module.production_env.aws_route53_record.mailu-server: Still creating... [20s elapsed]
module.production_env.aws_route53_record.mailu-server: Still creating... [30s elapsed]
module.production_env.aws_route53_record.mailu-server: Still creating... [40s elapsed]
module.production_env.aws_route53_record.mailu-server: Creation complete after 42s [id=Z0173878287JIU5M4KB8R_mail.seagl.org_CNAME]
Apply complete! Resources: 1 added, 0 changed, 0 destroyed. |
Locks and plans deleted for the projects and workspaces modified in this pull request:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Per https://mailu.io/master/compose/setup.html#tls-certificates, Mailu needs the A record set for all HOSTNAMEs in the env file.
This sets mail.seagl.org to the mailu.host.seagl.org address, as is needed.