-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename outputs based on module renames
- Loading branch information
Showing
2 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,74 +1,74 @@ | ||
| output "provisioned_product_id" { | ||
| description = "The ID of the provisioned product" | ||
| value = module.product.provisioned_product_id | ||
| value = module.ec2.provisioned_product_id | ||
| } | ||
|
|
||
| output "provisioned_product_name" { | ||
| description = "The name of the provisioned product" | ||
| value = module.product.provisioned_product_name | ||
| value = module.ec2.provisioned_product_name | ||
| } | ||
|
|
||
| output "provisioned_product_arn" { | ||
| description = "The ARN of the provisioned product" | ||
| value = module.product.provisioned_product_arn | ||
| value = module.ec2.provisioned_product_arn | ||
| } | ||
|
|
||
| output "provisioned_product_type" { | ||
| description = "The type of the provisioned product" | ||
| value = module.product.provisioned_product_type | ||
| value = module.ec2.provisioned_product_type | ||
| } | ||
|
|
||
| output "provisioned_product_status" { | ||
| description = "The status of the provisioned product" | ||
| value = module.product.provisioned_product_status | ||
| value = module.ec2.provisioned_product_status | ||
| } | ||
|
|
||
| output "provisioned_product_status_message" { | ||
| description = "The status message for the provisioned product" | ||
| value = module.product.provisioned_product_status_message | ||
| value = module.ec2.provisioned_product_status_message | ||
| } | ||
|
|
||
| output "launch_role_arn" { | ||
| description = "The ARN of the launch role" | ||
| value = module.product.launch_role_arn | ||
| value = module.ec2.launch_role_arn | ||
| } | ||
|
|
||
| output "portfolio_id" { | ||
| description = "The ID of the portfolio used" | ||
| value = module.product.portfolio_id | ||
| value = module.ec2.portfolio_id | ||
| } | ||
|
|
||
| output "product_id" { | ||
| description = "The ID of the product used" | ||
| value = module.product.product_id | ||
| value = module.ec2.product_id | ||
| } | ||
|
|
||
| output "provisioning_artifact_id" { | ||
| description = "The ID of the provisioning artifact used" | ||
| value = module.product.provisioning_artifact_id | ||
| value = module.ec2.provisioning_artifact_id | ||
| } | ||
|
|
||
| output "vpc_id" { | ||
| description = "The VPC ID where the instance will be provisioned" | ||
| value = module.product.vpc_id | ||
| value = module.ec2.vpc_id | ||
| } | ||
|
|
||
| output "availability_zone" { | ||
| description = "The availability zone of the first selected subnet" | ||
| value = module.product.availability_zone | ||
| value = module.ec2.availability_zone | ||
| } | ||
|
|
||
| output "availability_zone_names" { | ||
| description = "VPC Availability zone name list" | ||
| value = module.product.availability_zone_names | ||
| value = module.ec2.availability_zone_names | ||
| } | ||
|
|
||
| output "availability_zone_ids" { | ||
| description = "VPC Availability zone id list" | ||
| value = module.product.availability_zone_ids | ||
| value = module.ec2.availability_zone_ids | ||
| } | ||
|
|
||
| output "availability_zone_suffixes" { | ||
| description = "VPC Availability zone suffix list" | ||
| value = module.product.availability_zone_suffixes | ||
| value = module.ec2.availability_zone_suffixes | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters