Skip to content

Commit

Permalink
marking endpoints as sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
P0NDER0SA committed Oct 18, 2024
1 parent f0f84d5 commit c0bf04f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion aws/elasticache/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ output "redis_cluster_security_group_id" {
output "redis_primary_endpoint_address" {
description = "The address of the primary node for the cluster"
value = aws_elasticache_replication_group.notification-cluster-cache-multiaz-group.primary_endpoint_address
}
sensitive = true
}
5 changes: 3 additions & 2 deletions aws/rds/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ output "rds_instance_id" {
value = aws_rds_cluster_instance.notification-canada-ca-instances[0].identifier
}
output "cluster_endpoint" {
value = aws_rds_cluster.notification-canada-ca.endpoint
}
value = aws_rds_cluster.notification-canada-ca.endpoint
sensitive = true
}

0 comments on commit c0bf04f

Please sign in to comment.