@@ -368,52 +368,52 @@ output "vgw_arn" {
368
368
}
369
369
370
370
output "default_vpc_id" {
371
- description = " The ID of the VPC"
371
+ description = " The ID of the Default VPC"
372
372
value = concat (aws_default_vpc. this . * . id , [" " ])[0 ]
373
373
}
374
374
375
375
output "default_vpc_arn" {
376
- description = " The ARN of the VPC"
376
+ description = " The ARN of the Default VPC"
377
377
value = concat (aws_default_vpc. this . * . arn , [" " ])[0 ]
378
378
}
379
379
380
380
output "default_vpc_cidr_block" {
381
- description = " The CIDR block of the VPC"
381
+ description = " The CIDR block of the Default VPC"
382
382
value = concat (aws_default_vpc. this . * . cidr_block , [" " ])[0 ]
383
383
}
384
384
385
385
output "default_vpc_default_security_group_id" {
386
- description = " The ID of the security group created by default on VPC creation"
386
+ description = " The ID of the security group created by default on Default VPC creation"
387
387
value = concat (aws_default_vpc. this . * . default_security_group_id , [" " ])[0 ]
388
388
}
389
389
390
390
output "default_vpc_default_network_acl_id" {
391
- description = " The ID of the default network ACL"
391
+ description = " The ID of the default network ACL of the Default VPC "
392
392
value = concat (aws_default_vpc. this . * . default_network_acl_id , [" " ])[0 ]
393
393
}
394
394
395
395
output "default_vpc_default_route_table_id" {
396
- description = " The ID of the default route table"
396
+ description = " The ID of the default route table of the Default VPC "
397
397
value = concat (aws_default_vpc. this . * . default_route_table_id , [" " ])[0 ]
398
398
}
399
399
400
400
output "default_vpc_instance_tenancy" {
401
- description = " Tenancy of instances spin up within VPC"
401
+ description = " Tenancy of instances spin up within Default VPC"
402
402
value = concat (aws_default_vpc. this . * . instance_tenancy , [" " ])[0 ]
403
403
}
404
404
405
405
output "default_vpc_enable_dns_support" {
406
- description = " Whether or not the VPC has DNS support"
406
+ description = " Whether or not the Default VPC has DNS support"
407
407
value = concat (aws_default_vpc. this . * . enable_dns_support , [" " ])[0 ]
408
408
}
409
409
410
410
output "default_vpc_enable_dns_hostnames" {
411
- description = " Whether or not the VPC has DNS hostname support"
411
+ description = " Whether or not the Default VPC has DNS hostname support"
412
412
value = concat (aws_default_vpc. this . * . enable_dns_hostnames , [" " ])[0 ]
413
413
}
414
414
415
415
output "default_vpc_main_route_table_id" {
416
- description = " The ID of the main route table associated with this VPC"
416
+ description = " The ID of the main route table associated with the Default VPC"
417
417
value = concat (aws_default_vpc. this . * . main_route_table_id , [" " ])[0 ]
418
418
}
419
419
0 commit comments