Releases: zachreborn/terraform-modules
Releases · zachreborn/terraform-modules
v3.1.1
v3.1.1
v3.1.0
What's Changed
- improved route53/zone module scalability by @zachreborn in #44
Full Changelog: v3.0.0...v3.1.0
Migration Guide
The configuration and input structure has changed from single attributes to a map of objects. Please see the example below for how to modify your configuration to match.
Previous Version
module "example_com_zone" {
source = "github.com/zachreborn/terraform-modules//modules/aws/route53/zone"
comment = "example.com"
name = "example.com"
}
New Configuration
module "example_com_zone" {
source = "github.com/zachreborn/terraform-modules//modules/aws/route53/zone"
zones = {
example.com = {
comment = "example.com"
delegation_set_id = null
name = "example.com"
},
example.net = {
comment = "example.net"
delegation_set_id = null
name = "example.net"
}
}
}
v3.0.0
What's Changed
- removed deprecated s3_website module by @zachreborn in #41
Full Changelog: v2.15.0...v3.0.0
v2.15.0
What's Changed
- Feature aws identity center sso by @zachreborn in #36
Full Changelog: v2.14.2...v2.15.0
v2.14.2
Description
- Bug fixes for S3 bucket module outputs when website is disabled
Full Changelog: v2.14.0...v2.14.2
v2.14.0
What's Changed
- Expanded the
bucket
module to allow S3 website hosting and expanded options to manage public blocks by @zachreborn in #34 - Deprecated the
s3_website
module as all features now exist in thebucket
module
Full Changelog: v2.13.3...v2.14.0
v2.13.3
Full Changelog: v2.13.2...v2.13.3
v2.13.2
What's Changed
- added datacenter initial configuration by @zachreborn in #32
- Bug_vpc_eip_domain by @zachreborn in #33
Full Changelog: v2.13.1...v2.13.2
v2.13.1
What's Changed
- Feature - create DS record for dnssec by @zachreborn in #31
Full Changelog: v2.13.0...v2.13.1
v2.13.0
What's Changed
- feature - route53 domain_registration module by @zachreborn in #30
Full Changelog: v2.12.2...v2.13.0