-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
74 lines (60 loc) · 1.49 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
output "weeks_to_days" {
value = 7
description = "The number of days in a week"
}
output "weeks_to_hours" {
value = 7 * 24
description = "The number of hours in a week"
}
output "weeks_to_minutes" {
value = 7 * 24 * 60
description = "The number of minutes in a week"
}
output "weeks_to_seconds" {
value = 7 * 24 * 60 * 60
description = "The number of seconds in a week"
}
output "weeks_to_millis" {
value = 7 * 24 * 60 * 60 * 1000
description = "The number of milliseconds in a week"
}
output "days_to_hours" {
value = 24
description = "The number of hours in a day"
}
output "days_to_minutes" {
value = 24 * 60
description = "The number of minutes in a day"
}
output "days_to_seconds" {
value = 24 * 60 * 60
description = "The number of seconds in a day"
}
output "days_to_millis" {
value = 24 * 60 * 60 * 1000
description = "The number of milliseconds in a day"
}
output "hours_to_minutes" {
value = 60
description = "The number of minutes in an hour"
}
output "hours_to_seconds" {
value = 60 * 60
description = "The number of seconds in an hour"
}
output "hours_to_millis" {
value = 60 * 60 * 1000
description = "The number of milliseconds in an hour"
}
output "minutes_to_seconds" {
value = 60
description = "The number of seconds in a minute"
}
output "minutes_to_millis" {
value = 60 * 1000
description = "The number of milliseconds in a minute"
}
output "seconds_to_millis" {
value = 1000
description = "The number of milliseconds in a second"
}