1
1
#
2
- # ONLY EDIT THIS FILE IN github.com/cloudposse /terraform-null-label
2
+ # ONLY EDIT THIS FILE IN github.com/justtrackio /terraform-null-label
3
3
# All other instances of this file should be a copy of that one
4
4
#
5
5
#
6
- # Copy this file from https://github.com/cloudposse /terraform-null-label/blob/master /exports/context.tf
6
+ # Copy this file from https://github.com/justtrackio /terraform-null-label/blob/main /exports/context.tf
7
7
# and then place it in your Terraform module to automatically get
8
- # Cloud Posse 's standard configuration inputs suitable for passing
9
- # to Cloud Posse modules.
8
+ # justtrack 's standard configuration inputs suitable for passing
9
+ # to justtrack modules.
10
10
#
11
- # curl -sL https://raw.githubusercontent.com/cloudposse /terraform-null-label/master /exports/context.tf -o context.tf
11
+ # curl -sL https://raw.githubusercontent.com/justtrackio /terraform-null-label/main /exports/context.tf -o context.tf
12
12
#
13
13
# Modules should access the whole context as `module.this.context`
14
14
# to get the input variables with nulls for defaults,
21
21
#
22
22
23
23
module "this" {
24
- source = " cloudposse /label/null"
25
- version = " 0.25 .0" # requires Terraform >= 0.13.0
24
+ source = " justtrackio /label/null"
25
+ version = " 0.26 .0" # requires Terraform >= 0.13.0
26
26
27
27
enabled = var. enabled
28
28
namespace = var. namespace
@@ -45,7 +45,7 @@ module "this" {
45
45
context = var. context
46
46
}
47
47
48
- # Copy contents of cloudposse /terraform-null-label/variables.tf here
48
+ # Copy contents of justtrackio /terraform-null-label/variables.tf here
49
49
50
50
variable "context" { # tflint-ignore: terraform_standard_module_structure
51
51
type = any
@@ -276,4 +276,22 @@ variable "descriptor_formats" { # tflint-ignore: terraform_standard_module_struc
276
276
EOT
277
277
}
278
278
279
- # ### End of copy of cloudposse/terraform-null-label/variables.tf
279
+ variable "aws_account_id" { # tflint-ignore: terraform_standard_module_structure
280
+ type = string
281
+ description = " AWS account id"
282
+ default = null
283
+ }
284
+
285
+ variable "aws_region" { # tflint-ignore: terraform_standard_module_structure
286
+ type = string
287
+ description = " AWS region"
288
+ default = null
289
+ }
290
+
291
+ variable "organizational_unit" { # tflint-ignore: terraform_standard_module_structure
292
+ type = string
293
+ description = " Usually used to indicate the AWS organizational unit, e.g. 'prod', 'sdlc'"
294
+ default = null
295
+ }
296
+
297
+ # ### End of copy of justtrackio/terraform-null-label/variables.tf
0 commit comments