Skip to content

Commit 864b22b

Browse files
committed
feat: reverted some minor changes
1 parent 18276d7 commit 864b22b

File tree

4 files changed

+4
-24
lines changed

4 files changed

+4
-24
lines changed

.gitignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ override.tf.json
3838
# Ignore CLI configuration files
3939
.terraformrc
4040
terraform.rc
41+
.terraform.lock.hcl
42+
.terraform
4143

4244
# MacOS General
4345
.DS_Store
@@ -369,10 +371,6 @@ node_modules/
369371
*.dsw
370372
*.dsp
371373

372-
# Visual Studio 6 technical files
373-
*.ncb
374-
*.aps
375-
376374
# Visual Studio LightSwitch build output
377375
**/*.HTMLClient/GeneratedArtifacts
378376
**/*.DesktopClient/GeneratedArtifacts

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,11 @@ No resources.
8585

8686
## Inputs
8787

88-
| Name | Description | Type | Default | Required |
89-
|------|-------------|------|---------|:--------:|
90-
| <a name="input_context"></a> [context](#input\_context) | Default context for naming and tagging purpose | <pre>object({<br> organization = string<br> environment = string<br> account = string<br> product = string<br> tags = map(string)<br> })</pre> | n/a | yes |
88+
No inputs.
9189

9290
## Outputs
9391

94-
| Name | Description |
95-
|------|-------------|
96-
| <a name="output_context"></a> [context](#output\_context) | Exported context from input variable |
92+
No outputs.
9793
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
9894
<!-- markdownlint-disable -->
9995
<!-- prettier-ignore-end -->

outputs.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +0,0 @@
1-
output "context" {
2-
value = var.context
3-
description = "Exported context from input variable"
4-
}

variables.tf

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +0,0 @@
1-
variable "context" {
2-
type = object({
3-
organization = string
4-
environment = string
5-
account = string
6-
product = string
7-
tags = map(string)
8-
})
9-
description = "Default context for naming and tagging purpose"
10-
}

0 commit comments

Comments
 (0)