Skip to content

Commit 59cdb6c

Browse files
committed
Fix pipeline
1 parent f62191b commit 59cdb6c

File tree

5 files changed

+27
-67
lines changed

5 files changed

+27
-67
lines changed

.terraform.lock.hcl

Lines changed: 0 additions & 20 deletions
This file was deleted.

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,14 @@ In order to run all checks at any point run the following command:
5353
| Name | Version |
5454
|------|---------|
5555
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13 |
56+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 3.74.1 |
57+
| <a name="requirement_local"></a> [local](#requirement\_local) | 2.1.0 |
5658

5759
## Providers
5860

5961
| Name | Version |
6062
|------|---------|
61-
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
63+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 3.74.1 |
6264

6365
## Modules
6466

@@ -71,11 +73,11 @@ In order to run all checks at any point run the following command:
7173

7274
| Name | Type |
7375
|------|------|
74-
| [aws_ecs_service.service](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecs_service) | resource |
75-
| [aws_security_group.ecs_tasks_sg](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group) | resource |
76-
| [aws_security_group_rule.egress](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group_rule) | resource |
77-
| [aws_security_group_rule.ingress_through_http](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group_rule) | resource |
78-
| [aws_security_group_rule.ingress_through_https](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group_rule) | resource |
76+
| [aws_ecs_service.service](https://registry.terraform.io/providers/hashicorp/aws/3.74.1/docs/resources/ecs_service) | resource |
77+
| [aws_security_group.ecs_tasks_sg](https://registry.terraform.io/providers/hashicorp/aws/3.74.1/docs/resources/security_group) | resource |
78+
| [aws_security_group_rule.egress](https://registry.terraform.io/providers/hashicorp/aws/3.74.1/docs/resources/security_group_rule) | resource |
79+
| [aws_security_group_rule.ingress_through_http](https://registry.terraform.io/providers/hashicorp/aws/3.74.1/docs/resources/security_group_rule) | resource |
80+
| [aws_security_group_rule.ingress_through_https](https://registry.terraform.io/providers/hashicorp/aws/3.74.1/docs/resources/security_group_rule) | resource |
7981

8082
## Inputs
8183

@@ -86,6 +88,7 @@ In order to run all checks at any point run the following command:
8688
| <a name="input_block_s3_bucket_public_access"></a> [block\_s3\_bucket\_public\_access](#input\_block\_s3\_bucket\_public\_access) | (Optional) If true, public access to the S3 bucket will be blocked. | `bool` | `false` | no |
8789
| <a name="input_container_name"></a> [container\_name](#input\_container\_name) | Name of the running container | `any` | n/a | yes |
8890
| <a name="input_default_certificate_arn"></a> [default\_certificate\_arn](#input\_default\_certificate\_arn) | (Optional) The ARN of the default SSL server certificate. Required if var.https\_ports is set. | `string` | `null` | no |
91+
| <a name="input_deployment_controller"></a> [deployment\_controller](#input\_deployment\_controller) | (Optional) Deployment controller | `list(string)` | `[]` | no |
8992
| <a name="input_deployment_maximum_percent"></a> [deployment\_maximum\_percent](#input\_deployment\_maximum\_percent) | (Optional) The upper limit (as a percentage of the service's desiredCount) of the number of running tasks that can be running in a service during a deployment. | `number` | `200` | no |
9093
| <a name="input_deployment_minimum_healthy_percent"></a> [deployment\_minimum\_healthy\_percent](#input\_deployment\_minimum\_healthy\_percent) | (Optional) The lower limit (as a percentage of the service's desiredCount) of the number of running tasks that must remain running and healthy in a service during a deployment. | `number` | `100` | no |
9194
| <a name="input_desired_count"></a> [desired\_count](#input\_desired\_count) | (Optional) The number of instances of the task definition to place and keep running. Defaults to 0. | `number` | `1` | no |

examples/test/.terraform.lock.hcl

Lines changed: 0 additions & 41 deletions
This file was deleted.

examples/test/mock_provider.tf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
terraform {
2+
required_version = ">= 0.13"
3+
required_providers {
4+
aws = {
5+
source = "hashicorp/aws"
6+
version = "3.74.1"
7+
}
8+
local = {
9+
source = "hashicorp/local"
10+
version = "2.1.0"
11+
}
12+
}
13+
}
14+
115
provider "aws" {
216
region = "us-east-1"
317
skip_credentials_validation = true

versions.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,9 @@ terraform {
55
source = "hashicorp/aws"
66
version = "3.74.1"
77
}
8+
local = {
9+
source = "hashicorp/local"
10+
version = "2.1.0"
11+
}
812
}
913
}

0 commit comments

Comments
 (0)