forked from terraform-aws-modules/terraform-aws-route53
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added route53 modules for zones and records
- Loading branch information
0 parents
commit 6907787
Showing
20 changed files
with
573 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
{{ if .Versions -}} | ||
<a name="unreleased"></a> | ||
## [Unreleased] | ||
{{ if .Unreleased.CommitGroups -}} | ||
{{ range .Unreleased.CommitGroups -}} | ||
### {{ .Title }} | ||
{{ range .Commits -}} | ||
{{/* SKIPPING RULES - START */ -}} | ||
{{- if not (hasPrefix .Subject "Updated CHANGELOG") -}} | ||
{{- if not (contains .Subject "[ci skip]") -}} | ||
{{- if not (contains .Subject "[skip ci]") -}} | ||
{{- if not (hasPrefix .Subject "Merge pull request ") -}} | ||
{{- if not (hasPrefix .Subject "Added CHANGELOG") -}} | ||
{{- /* SKIPPING RULES - END */ -}} | ||
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} | ||
{{/* SKIPPING RULES - START */ -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{/* SKIPPING RULES - END */ -}} | ||
{{ end }} | ||
{{ end -}} | ||
{{ else }} | ||
{{ range .Unreleased.Commits -}} | ||
{{/* SKIPPING RULES - START */ -}} | ||
{{- if not (hasPrefix .Subject "Updated CHANGELOG") -}} | ||
{{- if not (contains .Subject "[ci skip]") -}} | ||
{{- if not (contains .Subject "[skip ci]") -}} | ||
{{- if not (hasPrefix .Subject "Merge pull request ") -}} | ||
{{- if not (hasPrefix .Subject "Added CHANGELOG") -}} | ||
{{- /* SKIPPING RULES - END */ -}} | ||
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} | ||
{{/* SKIPPING RULES - START */ -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{/* SKIPPING RULES - END */ -}} | ||
{{ end }} | ||
{{ end -}} | ||
{{ end -}} | ||
|
||
{{ range .Versions }} | ||
<a name="{{ .Tag.Name }}"></a> | ||
## {{ if .Tag.Previous }}[{{ .Tag.Name }}]{{ else }}{{ .Tag.Name }}{{ end }} - {{ datetime "2006-01-02" .Tag.Date }} | ||
{{ if .CommitGroups -}} | ||
{{ range .CommitGroups -}} | ||
### {{ .Title }} | ||
{{ range .Commits -}} | ||
{{/* SKIPPING RULES - START */ -}} | ||
{{- if not (hasPrefix .Subject "Updated CHANGELOG") -}} | ||
{{- if not (contains .Subject "[ci skip]") -}} | ||
{{- if not (contains .Subject "[skip ci]") -}} | ||
{{- if not (hasPrefix .Subject "Merge pull request ") -}} | ||
{{- if not (hasPrefix .Subject "Added CHANGELOG") -}} | ||
{{- /* SKIPPING RULES - END */ -}} | ||
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} | ||
{{/* SKIPPING RULES - START */ -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{/* SKIPPING RULES - END */ -}} | ||
{{ end }} | ||
{{ end -}} | ||
{{ else }} | ||
{{ range .Commits -}} | ||
{{/* SKIPPING RULES - START */ -}} | ||
{{- if not (hasPrefix .Subject "Updated CHANGELOG") -}} | ||
{{- if not (contains .Subject "[ci skip]") -}} | ||
{{- if not (contains .Subject "[skip ci]") -}} | ||
{{- if not (hasPrefix .Subject "Merge pull request ") -}} | ||
{{- if not (hasPrefix .Subject "Added CHANGELOG") -}} | ||
{{- /* SKIPPING RULES - END */ -}} | ||
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} | ||
{{/* SKIPPING RULES - START */ -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
{{/* SKIPPING RULES - END */ -}} | ||
{{ end }} | ||
{{ end -}} | ||
|
||
{{- if .NoteGroups -}} | ||
{{ range .NoteGroups -}} | ||
### {{ .Title }} | ||
{{ range .Notes }} | ||
{{ .Body }} | ||
{{ end }} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
|
||
{{- if .Versions }} | ||
[Unreleased]: {{ .Info.RepositoryURL }}/compare/{{ $latest := index .Versions 0 }}{{ $latest.Tag.Name }}...HEAD | ||
{{ range .Versions -}} | ||
{{ if .Tag.Previous -}} | ||
[{{ .Tag.Name }}]: {{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
style: github | ||
template: CHANGELOG.tpl.md | ||
info: | ||
title: CHANGELOG | ||
repository_url: https://github.com/terraform-aws-modules/terraform-aws-route53 | ||
options: | ||
header: | ||
pattern: "^(.*)$" | ||
pattern_maps: | ||
- Subject |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
# Uses editorconfig to maintain consistent coding styles | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
trim_trailing_whitespace = true | ||
|
||
[*.{tf,tfvars}] | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
[*.md] | ||
max_line_length = 0 | ||
trim_trailing_whitespace = false | ||
|
||
[Makefile] | ||
tab_width = 2 | ||
indent_style = tab | ||
|
||
[COMMIT_EDITMSG] | ||
max_line_length = 0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.terraform | ||
terraform.tfstate | ||
*.tfstate* | ||
terraform.tfvars |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
repos: | ||
- repo: git://github.com/antonbabenko/pre-commit-terraform | ||
rev: v1.31.0 | ||
hooks: | ||
- id: terraform_fmt | ||
- id: terraform_docs | ||
- repo: git://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.1.0 | ||
hooks: | ||
- id: check-merge-conflict |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.PHONY: changelog release | ||
|
||
changelog: | ||
git-chglog -o CHANGELOG.md --next-tag `semtag final -s minor -o` | ||
|
||
release: | ||
semtag final -s minor |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
# Route53 Terraform module | ||
|
||
Terraform module which creates Route53 resources. | ||
|
||
There are independent submodules: | ||
|
||
* [zones](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/modules/zones) - to manage Route53 zones | ||
* [records](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/modules/records) - to manage Route53 records | ||
|
||
This module currently does not have all arguments supported by the Terraform AWS providers. | ||
|
||
|
||
## Terraform versions | ||
|
||
Terraform 0.12. Pin module version to `~> v1.0`. Submit pull-requests to `master` branch. | ||
|
||
|
||
## Usage | ||
|
||
### Create Route53 zones and records | ||
|
||
```hcl | ||
module "zones" { | ||
source = "terraform-aws-modules/route53/aws//modules/zones" | ||
version = "~> 1.0" | ||
zones = { | ||
"terraform-aws-modules-example.com" = { | ||
comment = "terraform-aws-modules-examples.com (production)" | ||
tags = { | ||
env = "production" | ||
} | ||
} | ||
"myapp.com" = { | ||
comment = "myapp.com" | ||
} | ||
} | ||
} | ||
module "records" { | ||
source = "terraform-aws-modules/route53/aws//modules/records" | ||
version = "~> 1.0" | ||
zone_name = keys(module.zones.this_route53_zone_zone_id)[0] | ||
records = [ | ||
{ | ||
name = "apigateway1" | ||
type = "A" | ||
alias = { | ||
name = "d-10qxlbvagl.execute-api.eu-west-1.amazonaws.com" | ||
zone_id = "ZLY8HYME6SFAD" | ||
} | ||
}, | ||
{ | ||
name = "" | ||
type = "A" | ||
ttl = 3600 | ||
records = [ | ||
"10.10.10.10", | ||
] | ||
}, | ||
] | ||
depends_on = [module.zones] | ||
} | ||
``` | ||
|
||
Note that `depends_on` in modules is available since Terraform 0.13. | ||
|
||
|
||
## Examples | ||
|
||
* [Complete Route53 zones and records example](https://github.com/terraform-aws-modules/terraform-aws-route53/tree/master/examples/complete) | ||
|
||
|
||
## Conditional creation | ||
|
||
Sometimes you need to have a way to create resources conditionally but Terraform does not allow to use `count` inside `module` block, so the solution is to specify argument `create`. | ||
|
||
|
||
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --> | ||
## Requirements | ||
|
||
| Name | Version | | ||
|------|---------| | ||
| terraform | >= 0.12.6, < 0.14 | | ||
| aws | ~> 2.49 | | ||
|
||
## Providers | ||
|
||
No provider. | ||
|
||
## Inputs | ||
|
||
No input. | ||
|
||
## Outputs | ||
|
||
No output. | ||
|
||
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> | ||
|
||
## Authors | ||
|
||
Module managed by [Anton Babenko](https://github.com/antonbabenko). | ||
|
||
## License | ||
|
||
Apache 2 Licensed. See LICENSE for full details. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Route53 zones and records example | ||
|
||
Configuration in this directory creates Route53 zones and records. | ||
|
||
## Usage | ||
|
||
To run this example you need to execute: | ||
|
||
```bash | ||
$ terraform init | ||
$ terraform plan | ||
$ terraform apply | ||
``` | ||
|
||
Note that this example may create resources which cost money. Run `terraform destroy` when you don't need these resources. | ||
|
||
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --> | ||
## Requirements | ||
|
||
No requirements. | ||
|
||
## Providers | ||
|
||
No provider. | ||
|
||
## Inputs | ||
|
||
No input. | ||
|
||
## Outputs | ||
|
||
No output. | ||
|
||
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
provider "aws" { | ||
region = "eu-west-1" | ||
} | ||
|
||
module "zones" { | ||
source = "../../modules/zones" | ||
|
||
zones = { | ||
"terraform-aws-modules-example.com" = { | ||
comment = "terraform-aws-modules-examples.com (production)" | ||
tags = { | ||
Name = "terraform-aws-modules-example.com" | ||
} | ||
} | ||
|
||
"app.terraform-aws-modules-example.com" = { | ||
comment = "app.terraform-aws-modules-example.com" | ||
tags = { | ||
Name = "app.terraform-aws-modules-example.com" | ||
} | ||
} | ||
} | ||
} | ||
|
||
module "records" { | ||
source = "../../modules/records" | ||
|
||
zone_name = keys(module.zones.this_route53_zone_zone_id)[0] | ||
// zone_id = module.zones.this_route53_zone_zone_id["terraform-aws-modules-example.com"] | ||
|
||
records = [ | ||
// { | ||
// name = "apigateway1" | ||
// type = "A" | ||
// alias = { | ||
// name = "..." | ||
// zone_id = "..." | ||
// } | ||
// }, | ||
{ | ||
name = "" | ||
type = "A" | ||
ttl = 3600 | ||
records = [ | ||
"10.10.10.10", | ||
] | ||
}, | ||
] | ||
|
||
depends_on = [module.zones] | ||
} |
Oops, something went wrong.