Skip to content

v3.1.0

Compare
Choose a tag to compare
@zachreborn zachreborn released this 07 Mar 16:27
· 9 commits to main since this release
272ab0b

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"
    }
  }
}