File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # 0.8.1 (Apr 24, 2026)
2+ * Fixed usage of ` try ` when looking up domain outputs.
3+
14# 0.8.0 (Mar 26, 2026)
25* Migrated domain delegator from IAM user to IAM role.
36* Migrated from Terraform to OpenTofu.
Original file line number Diff line number Diff line change 99 domain_nameservers = data. ns_connection . domain . outputs . nameservers
1010 domain_delegator = data. ns_connection . domain . outputs . delegator
1111
12- domain_access_key = try (local. domain_delegator [" access_key" ])
13- domain_secret_key = try (local. domain_delegator [" secret_key" ])
14- domain_assume_role = try (local. domain_delegator [" role_arn" ]) == " " ? [] : [
12+ domain_access_key = try (local. domain_delegator [" access_key" ], " " )
13+ domain_secret_key = try (local. domain_delegator [" secret_key" ], " " )
14+ domain_assume_role = try (local. domain_delegator [" role_arn" ], " " ) == " " ? [] : [
1515 {
1616 role_arn : local.domain_delegator[" role_arn" ]
1717 duration : local.domain_delegator[" session_duration" ]
@@ -34,10 +34,5 @@ provider "aws" {
3434 }
3535 }
3636
37- assume_role {
38- role_arn = local. domain_delegator [" role_arn" ]
39- duration = local. domain_delegator [" session_duration" ]
40- }
41-
4237 alias = " domain"
4338}
You can’t perform that action at this time.
0 commit comments