Skip to content

Releases: zachreborn/terraform-modules

v3.3.4

02 Apr 22:44
v3.3.4
acc8a2d
Compare
Choose a tag to compare

What's Changed?

Full Changelog: v3.3.3...v3.3.4

v3.3.3

02 Apr 16:53
v3.3.3
67d19c5
Compare
Choose a tag to compare

What's Changed?

Route53 records

If a record in var.records is longer than 255 characters, we split the record every 255 characters with "" between each 255th and 256th character.

Full Changelog: v3.3.2...v3.3.3

v3.3.2

28 Mar 23:00
v3.3.2
2213577
Compare
Choose a tag to compare

Full Changelog: v3.3.1...v3.3.2

v3.3.1

28 Mar 18:55
746212d
Compare
Choose a tag to compare

Full Changelog: v3.3.0...v3.3.1

v3.3.0

21 Mar 14:06
6f5bbfc
Compare
Choose a tag to compare

Full Changelog: v3.2.0...v3.3.0

v3.2.0

15 Mar 02:27
fa836dd
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.1.1...v3.2.0

v3.1.1

15 Mar 02:27
79df494
Compare
Choose a tag to compare
v3.1.1

v3.1.0

07 Mar 16:27
272ab0b
Compare
Choose a tag to compare

What's Changed

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

04 Jan 03:02
v3.0.0
f2e60ff
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.15.0...v3.0.0

v2.15.0

02 Jan 02:51
v2.15.0
32c95eb
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.14.2...v2.15.0