Skip to content

Commit 29ae87e

Browse files
authored
feat: update required Terraform version and add VPC endpoint ARN output (#2)
* chore: update required Terraform version in versions.tf * feat: add new output for VPC endpoint ARN
1 parent 3d7fa61 commit 29ae87e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

aws/s3-bucket-object/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.24"
7+
version = ">= 5.26"
88
}
99
}
1010
}

aws/vpc-endpoint/outputs.tf

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ output "endpoints" {
33
value = aws_vpc_endpoint.this
44
}
55

6+
output "endpoint_arn" {
7+
description = "VPC endpoint arns"
8+
value = aws_vpc_endpoint.this[*].arn
9+
}
10+
611
output "security_group_arn" {
712
description = "Amazon Resource Name (ARN) of the security group"
813
value = aws_security_group.this.arn

0 commit comments

Comments
 (0)