-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoreos.ami.id-main.tf
70 lines (49 loc) · 2.16 KB
/
coreos.ami.id-main.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
####### ########################################################################## ########
######## The external data source expects a python program in the module's folder. ########
####### ########################################################################## ########
### ################# ###
### [[data]] external ###
### ################# ###
data external ami {
program = [ "bash", "${path.module}/coreos-ami-reader.sh", "${ data.aws_region.with.name }" ]
}
### ################### ###
### [[data]] aws_region ###
### ################### ###
data aws_region with {
}
######## ########################## ########
######## Variables for this module. ########
######## ########################## ########
### ###################### ###
### [[variable]] in_use_pv ###
### ###################### ###
variable in_use_pv {
description = "Override default and get ID of paravirtual rather than the HVM CoreOS AMI."
default = "false"
}
### ##################################################### ###
### [[local]] attributes for building the CoreOS AMI log. ###
### ##################################################### ###
locals {
city_plus = "${ element( split( "(", data.aws_region.with.description ), 1 ) }"
city_name = "${ element( split( ")", local.city_plus ), 0 ) }"
pre_note = "The CoreOS AMI ID for ${local.city_name} ${ data.aws_region.with.name } is"
}
################ ########################################### ########
################ Module [[[CoreOS AMI ID]]] Output Variables ########
################ ########################################### ########
### ##################### ###
### [[output]] out_ami_id ###
### ##################### ###
output out_ami_id {
description = "EC2 AMI ID for CoreOS in your AWS region and selected virtualization type."
value = "${ data.external.ami.result[ var.in_use_pv ? "pv" : "hvm" ] }"
}
### ###################### ###
### [[output]] out_ami_log ###
### ###################### ###
output out_ami_log {
description = "Log string detailing the region city region name and EC2 CoreOS AMI ID."
value = "${local.pre_note} ${ data.external.ami.result[ var.in_use_pv ? "pv" : "hvm" ] }."
}