Skip to content

Releases: zachreborn/terraform-modules

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

v2.14.2

29 Dec 23:47
v2.14.2
7e11a8f
Compare
Choose a tag to compare

Description

  • Bug fixes for S3 bucket module outputs when website is disabled

Full Changelog: v2.14.0...v2.14.2

v2.14.0

29 Dec 23:16
v2.14.0
8e299df
Compare
Choose a tag to compare

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 the bucket module

Full Changelog: v2.13.3...v2.14.0

v2.13.3

28 Dec 20:39
v2.13.3
4bbede4
Compare
Choose a tag to compare

Full Changelog: v2.13.2...v2.13.3

v2.13.2

24 Nov 16:35
v2.13.2
11db06b
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.13.1...v2.13.2

v2.13.1

21 Aug 00:56
v2.13.1
b460840
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.13.0...v2.13.1

v2.13.0

20 Aug 02:28
v2.13.0
177b7f4
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.12.2...v2.13.0