diff --git a/examples/aws/terraform/ha-autoscale-cluster/outputs.tf b/examples/aws/terraform/ha-autoscale-cluster/outputs.tf index 1baaa66bd9541..5d59e18eaf6d5 100644 --- a/examples/aws/terraform/ha-autoscale-cluster/outputs.tf +++ b/examples/aws/terraform/ha-autoscale-cluster/outputs.tf @@ -38,7 +38,7 @@ output "cluster_name" { output "cluster_web_address" { description = "Web address to access the Teleport cluster" - value = "https://${var.use_acm ? aws_route53_record.proxy_acm[0].name : aws_route53_record.proxy[0].name}" + value = "https://${var.use_acm ? aws_route53_record.proxy_acm[0].name : aws_route53_record.proxy[0].fqdn}" } output "key_name" { diff --git a/examples/aws/terraform/ha-autoscale-cluster/ssm.tf b/examples/aws/terraform/ha-autoscale-cluster/ssm.tf index 6077e773a2273..32f92391f22fe 100644 --- a/examples/aws/terraform/ha-autoscale-cluster/ssm.tf +++ b/examples/aws/terraform/ha-autoscale-cluster/ssm.tf @@ -8,4 +8,5 @@ resource "aws_ssm_parameter" "license" { type = "SecureString" value = file(var.license_path) overwrite = true + tier = "Intelligent-Tiering" } diff --git a/examples/aws/terraform/starter-cluster/outputs.tf b/examples/aws/terraform/starter-cluster/outputs.tf index 9ae4a2722ecf1..9b077e316914f 100644 --- a/examples/aws/terraform/starter-cluster/outputs.tf +++ b/examples/aws/terraform/starter-cluster/outputs.tf @@ -10,7 +10,7 @@ output "cluster_name" { output "cluster_web_address" { description = "Web address to access the Teleport cluster" - value = "https://${var.use_acm ? aws_route53_record.cluster_acm[0].name : aws_route53_record.cluster[0].name}" + value = "https://${var.use_acm ? aws_route53_record.cluster_acm[0].name : aws_route53_record.cluster[0].fqdn}" } output "key_name" { diff --git a/examples/aws/terraform/starter-cluster/ssm.tf b/examples/aws/terraform/starter-cluster/ssm.tf index 499791e29b740..b6e1589c171ac 100644 --- a/examples/aws/terraform/starter-cluster/ssm.tf +++ b/examples/aws/terraform/starter-cluster/ssm.tf @@ -5,4 +5,5 @@ resource "aws_ssm_parameter" "license" { type = "SecureString" value = file(var.license_path) overwrite = true + tier = "Intelligent-Tiering" }