File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ data "external" "this" {
10
10
dotenv = var.source_environment
11
11
needroot = var.needroot
12
12
13
- label = var.description
14
- file_name = var.filename
13
+ label = var.description
14
+ file_name = var.filename
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ output "path" {
3
3
}
4
4
5
5
output "content" {
6
- value = file (data. external . this . result . path )
6
+ value = file (data. external . this . result . path )
7
+ sensitive = true
7
8
}
8
9
9
10
output "checksum" {
Original file line number Diff line number Diff line change 1
1
variable "description" {
2
- type = string
2
+ type = string
3
3
default = " MakeSelf Archive"
4
4
5
5
description = " The label that describes the archive."
@@ -12,21 +12,21 @@ variable "source_dir" {
12
12
}
13
13
14
14
variable "source_entrypoint" {
15
- type = string
15
+ type = string
16
16
default = " entrypoint.sh"
17
17
18
18
description = " The script to run when the archive is extracted."
19
19
}
20
20
21
21
variable "source_environment" {
22
- type = string
22
+ type = string
23
23
default = " "
24
24
25
25
description = " Dotenv file to be included into the archive."
26
26
}
27
27
28
28
variable "filename" {
29
- type = string
29
+ type = string
30
30
default = " makeself.run"
31
31
32
32
description = " The name of the archive file."
You can’t perform that action at this time.
0 commit comments