Skip to content

Commit

Permalink
[PFMENG-1278] code improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Duleendra committed Nov 6, 2023
1 parent ca4142f commit 6ffc0a5
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~>5.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.24 |

## Providers

Expand Down
2 changes: 1 addition & 1 deletion examples/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ module "verified_access_elb_endpoint" {
endpoint_type = "load-balancer"
load_balancer_arn = "arn:aws:elasticloadbalancing:us-east-1:793209430381:loadbalancer/app/student-portal/db28c751e6407a7e"
port = 443
protocol = "http"
protocol = "https"
subnet_ids = [
"subnet-05784f70e50ee83b4",
"subnet-08a8ce56967a027df"
Expand Down
2 changes: 1 addition & 1 deletion examples/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">=5.24"
version = "~> 5.24"
}
}
}
6 changes: 3 additions & 3 deletions modules/endpoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~>5.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.24 |

## Providers

Expand Down Expand Up @@ -45,6 +45,6 @@ No modules.

| Name | Description |
|------|-------------|
| <a name="output_ednpoint_id"></a> [ednpoint\_id](#output\_ednpoint\_id) | The ID of the AWS Verified Access endpoint. |
| <a name="output_endpoint_domain"></a> [endpoint\_domain](#output\_endpoint\_domain) | A DNS name that is generated for the endpoint. |
| <a name="output_endpoint_id"></a> [endpoint\_id](#output\_endpoint\_id) | The ID of the AWS Verified Access endpoint. |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
2 changes: 1 addition & 1 deletion modules/endpoint/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
output "ednpoint_id" {
output "endpoint_id" {
description = "The ID of the AWS Verified Access endpoint."
value = aws_verifiedaccess_endpoint.this.id
}
Expand Down
2 changes: 1 addition & 1 deletion modules/endpoint/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">=5.24"
version = ">= 5.24"
}
}
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">=5.24"
version = ">= 5.24"
}
}
}

0 comments on commit 6ffc0a5

Please sign in to comment.