File tree 4 files changed +60
-8
lines changed
4 files changed +60
-8
lines changed Original file line number Diff line number Diff line change 1
- .terraform
2
- terraform.tfstate
3
- * .tfstate *
4
- terraform.tfvars
1
+ # Local .terraform directories
2
+ ** / .terraform / *
3
+
4
+ # Terraform lockfile
5
5
.terraform.lock.hcl
6
+
7
+ # .tfstate files
8
+ * .tfstate
9
+ * .tfstate. *
10
+
11
+ # Crash log files
12
+ crash.log
13
+
14
+ # Exclude all .tfvars files, which are likely to contain sentitive data, such as
15
+ # password, private keys, and other secrets. These should not be part of version
16
+ # control as they are data points which are potentially sensitive and subject
17
+ # to change depending on the environment.
18
+ * .tfvars
19
+
20
+ # Ignore override files as they are usually used to override resources locally and so
21
+ # are not checked in
22
+ override.tf
23
+ override.tf.json
24
+ * _override.tf
25
+ * _override.tf.json
26
+
27
+ # Ignore CLI configuration files
28
+ .terraformrc
29
+ terraform.rc
Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : git://github.com/antonbabenko/pre-commit-terraform
3
- rev : v1.44 .0
3
+ rev : v1.46 .0
4
4
hooks :
5
5
- id : terraform_fmt
6
6
- id : terraform_validate
21
21
- ' --args=--only=terraform_standard_module_structure'
22
22
- ' --args=--only=terraform_workspace_remote'
23
23
- repo : git://github.com/pre-commit/pre-commit-hooks
24
- rev : v3.3 .0
24
+ rev : v3.4 .0
25
25
hooks :
26
26
- id : check-merge-conflict
Original file line number Diff line number Diff line change @@ -72,6 +72,16 @@ module "ecs" {
72
72
| ------| ---------|
73
73
| aws | >= 2.48 |
74
74
75
+ ## Modules
76
+
77
+ No Modules.
78
+
79
+ ## Resources
80
+
81
+ | Name |
82
+ | ------|
83
+ | [ aws_ecs_cluster] ( https://registry.terraform.io/providers/hashicorp/aws/2.48/docs/resources/ecs_cluster ) |
84
+
75
85
## Inputs
76
86
77
87
| Name | Description | Type | Default | Required |
@@ -90,7 +100,6 @@ module "ecs" {
90
100
| this\_ ecs\_ cluster\_ arn | ARN of the ECS Cluster |
91
101
| this\_ ecs\_ cluster\_ id | ID of the ECS Cluster |
92
102
| this\_ ecs\_ cluster\_ name | The name of the ECS cluster |
93
-
94
103
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
95
104
96
105
## Authors
Original file line number Diff line number Diff line change @@ -54,12 +54,31 @@ Current version creates an high-available VPC with instances that are attached t
54
54
| aws | >= 2.48 |
55
55
| template | >= 2.0 |
56
56
57
+ ## Modules
58
+
59
+ | Name | Source | Version |
60
+ | ------| --------| ---------|
61
+ | asg | terraform-aws-modules/autoscaling/aws | ~ > 3.0 |
62
+ | disabled_ecs | ../../ | |
63
+ | ec2_profile | ../../modules/ecs-instance-profile | |
64
+ | ecs | ../../ | |
65
+ | hello_world | ./service-hello-world | |
66
+ | vpc | terraform-aws-modules/vpc/aws | ~ > 2.0 |
67
+
68
+ ## Resources
69
+
70
+ | Name |
71
+ | ------|
72
+ | [ aws_ami] ( https://registry.terraform.io/providers/hashicorp/aws/2.48/docs/data-sources/ami ) |
73
+ | [ aws_availability_zones] ( https://registry.terraform.io/providers/hashicorp/aws/2.48/docs/data-sources/availability_zones ) |
74
+ | [ aws_ecs_capacity_provider] ( https://registry.terraform.io/providers/hashicorp/aws/2.48/docs/resources/ecs_capacity_provider ) |
75
+ | [ template_file] ( https://registry.terraform.io/providers/hashicorp/template/2.0/docs/data-sources/file ) |
76
+
57
77
## Inputs
58
78
59
79
No input.
60
80
61
81
## Outputs
62
82
63
83
No output.
64
-
65
84
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
You can’t perform that action at this time.
0 commit comments