File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,19 +3,19 @@ output "public_ip" {
33}
44
55output "private_ip" {
6- value = " ${ aws_instance . default . * . private_ip } "
6+ value = " ${ join ( " " , aws_instance. default . * . private_ip ) } "
77}
88
99output "private_dns" {
10- value = " ${ aws_instance . default . * . private_dns } "
10+ value = " ${ join ( " " , aws_instance. default . * . private_dns ) } "
1111}
1212
1313output "public_dns" {
1414 value = " ${ coalesce (join (" " , null_resource. eip . * . triggers . public_dns ), aws_instance. default . public_dns )} "
1515}
1616
1717output "id" {
18- value = " ${ aws_instance . default . * . id } "
18+ value = " ${ join ( " " , aws_instance. default . * . id ) } "
1919}
2020
2121output "ssh_key_pair" {
@@ -27,9 +27,9 @@ output "security_group_ids" {
2727}
2828
2929output "role" {
30- value = " ${ aws_iam_role . default . * . name } "
30+ value = " ${ join ( " " , aws_iam_role. default . * . name ) } "
3131}
3232
3333output "alarm" {
34- value = " ${ aws_cloudwatch_metric_alarm . default . * . id } "
34+ value = " ${ join ( " " , aws_cloudwatch_metric_alarm. default . * . id ) } "
3535}
You can’t perform that action at this time.
0 commit comments