Skip to content

Commit 875f071

Browse files
authored
Add missing vpc output (#4)
* Update action.yaml * Adding missing note in README
1 parent 67ebf88 commit 875f071

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ The following inputs can be used as `step.with` keys
259259
#### **Aurora Outputs**
260260
| Name | Description |
261261
|------------------|------------------------------------|
262+
| `aws_vpc_id` | The selected VPC ID used. |
262263
| `aurora_db_endpoint` | Aurora Endpoint. |
263264
| `aurora_db_secret_details_name` | AWS Secret name containing db credentials. |
264265
| `aurora_db_sg_id` | SG ID for the Aurora instance. |

action.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,9 @@ inputs:
256256
required: false
257257

258258
outputs:
259+
aws_vpc_id:
260+
description: "The selected VPC ID used."
261+
value: ${{ steps.deploy.outputs.aws_vpc_id }}
259262
aurora_db_endpoint:
260263
description: "Aurora Endpoint"
261264
value: ${{ steps.deploy.outputs.aurora_db_endpoint }}
@@ -376,4 +379,4 @@ runs:
376379
aws_vpc_enable_nat_gateway: ${{ inputs.aws_vpc_enable_nat_gateway }}
377380
aws_vpc_single_nat_gateway: ${{ inputs.aws_vpc_single_nat_gateway }}
378381
aws_vpc_external_nat_ip_ids: ${{ inputs.aws_vpc_external_nat_ip_ids }}
379-
aws_vpc_additional_tags: ${{inputs.aws_vpc_additional_tags }}
382+
aws_vpc_additional_tags: ${{inputs.aws_vpc_additional_tags }}

0 commit comments

Comments
 (0)