-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tf
65 lines (55 loc) · 1.61 KB
/
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
locals {
metadata = {
package = "terraform-aws-ipam"
version = trimspace(file("${path.module}/../../VERSION"))
module = basename(path.module)
name = var.name
}
module_tags = var.module_tags_enabled ? {
"module.terraform.io/package" = local.metadata.package
"module.terraform.io/version" = local.metadata.version
"module.terraform.io/name" = local.metadata.module
"module.terraform.io/full-name" = "${local.metadata.package}/${local.metadata.module}"
"module.terraform.io/instance" = local.metadata.name
} : {}
}
data "aws_region" "this" {}
data "aws_regions" "this" {
all_regions = true
}
locals {
region = data.aws_region.this.name
all_regions = data.aws_regions.this.names
}
###################################################
# Resource Discovery of IPAM (IP Address Manager)
###################################################
resource "aws_vpc_ipam_resource_discovery" "this" {
description = var.description
dynamic "operating_regions" {
for_each = var.operating_regions
content {
region_name = operating_regions.value
}
}
tags = merge(
{
"Name" = local.metadata.name
},
local.module_tags,
var.tags,
)
lifecycle {
precondition {
condition = contains(var.operating_regions, local.region)
error_message = "The current region is required to include in `operating_regions`."
}
precondition {
condition = alltrue([
for region in var.operating_regions :
contains(local.all_regions, region)
])
error_message = "There is invalid AWS region name."
}
}
}