File tree Expand file tree Collapse file tree 6 files changed +39
-22
lines changed Expand file tree Collapse file tree 6 files changed +39
-22
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ name: Bug report
22description : File a bug/issue
33title : " [BUG]: "
44labels : ["bug"]
5+ # assignees:
6+ # - OPSdiyBot
57body :
68- type : checkboxes
79 attributes :
@@ -38,11 +40,13 @@ body:
3840 label : Environment
3941 description : |
4042 examples:
41- - **Terraform version**: 1.3.0
42- - **Terraform provider version**: 4.0
43+ - **Terraform version**: 1.5.5
44+ - **Terraform provider version**:5.44.0
45+ - **Terraform module version**: 0.5.1
4346 value : |
44- - Terraform version: 0.0.0
45- - Terraform provider version: 0.0
47+ - Terraform version: X.Y.Z
48+ - Terraform provider version: X.Y.Z
49+ - Terraform module version: X.Y.Z
4650 render : markdown
4751 validations :
4852 required : true
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ name: Feature request
22description : Suggest new functionality
33title : " [FEATURE]: "
44labels : ["enhancement"]
5+ # assignees:
6+ # - OPSdiyBot
57body :
68- type : checkboxes
79 attributes :
2729 label : Describe alternatives you've considered
2830 description : A clear and concise description of any alternative solutions or features you've considered.
2931 validations :
30- required : true
32+ required : false
3133- type : textarea
3234 attributes :
3335 label : Anything else?
3739 **Tip**: You can attach images or log files by clicking this area to highlight it and then dragging files in.
3840 **Tip**: You can use GitHub Gist to share your concepts/ideas.
3941 validations :
40- required : true
42+ required : false
Original file line number Diff line number Diff line change 11terraform 1.5.7
22terraform-docs 0.17.0
33tflint 0.50.3
4- pre-commit 3.6.2
4+ pre-commit 3.7.0
5+ # python 3.11.2
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ module "module_name" {
2929
3030| Name | Version |
3131| ------| ---------|
32- | <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 1.3.1 |
32+ | <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 1.5.7 |
3333
3434## Providers
3535
Original file line number Diff line number Diff line change 1- # Terraform code goes here
1+ terraform {
2+ required_version = " >= 1.5.7"
3+
4+ required_providers {
5+ # aws = {
6+ # source = "hashicorp/aws"
7+ # version = ">= 5.44.0"
8+ # }
9+ # azurerm = {
10+ # source = "hashicorp/azurerm"
11+ # version = ">= 3.98.0"
12+ # }
13+ # digitalocean = {
14+ # source = "digitalocean/digitalocean"
15+ # version = ">= 2.36.0"
16+ # }
17+ # github = {
18+ # source = "integrations/github"
19+ # version = ">= 6.2.1"
20+ # }
21+ }
22+ }
23+
24+ # TODO: Add resources here.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments