Skip to content

Commit 2790a30

Browse files
sir-sigurdclaude
andcommitted
Refresh example: pin modules to 1.7.2, bump aws provider to ~> 6.0
examples/main.tf pinned the modules at the stale ref=1.3.0 and the root aws provider at ~> 5.0. With the cnames provider fix shipped in 1.7.2, the documented quilt + cnames topology resolves on ~> 6.0; bump both module refs to 1.7.2 and the root provider to ~> 6.0 so the example inits cleanly (verified: resolves to aws v6.49.0). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent f917107 commit 2790a30

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

examples/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ terraform {
4545
required_providers {
4646
aws = {
4747
source = "hashicorp/aws"
48-
version = "~> 5.0"
48+
version = "~> 6.0"
4949
}
5050
}
5151
}
@@ -83,7 +83,7 @@ variable "okta_client_secret" {
8383
# Main Quilt module
8484
module "quilt" {
8585
# Pin to the latest stable version from https://github.com/quiltdata/iac/tags
86-
source = "github.com/quiltdata/iac//modules/quilt?ref=1.3.0"
86+
source = "github.com/quiltdata/iac//modules/quilt?ref=1.7.2"
8787

8888
name = local.name
8989
template_file = local.build_file_path
@@ -199,7 +199,7 @@ module "quilt" {
199199

200200
# DNS configuration (optional but recommended)
201201
module "cnames" {
202-
source = "github.com/quiltdata/iac//modules/cnames?ref=1.3.0"
202+
source = "github.com/quiltdata/iac//modules/cnames?ref=1.7.2"
203203

204204
lb_dns_name = module.quilt.stack.outputs.LoadBalancerDNSName
205205
quilt_web_host = local.quilt_web_host

0 commit comments

Comments
 (0)