-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmain.tf
47 lines (40 loc) · 1.18 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
locals {
metadata = {
package = "terraform-aws-account"
version = trimspace(file("${path.module}/../../VERSION"))
module = basename(path.module)
name = trimprefix(var.url, "https://")
}
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
} : {}
}
###################################################
# OIDC Identity Provider
###################################################
data "tls_certificate" "this" {
count = var.auto_thumbprint_enabled ? 1 : 0
url = var.url
}
resource "aws_iam_openid_connect_provider" "this" {
url = var.url
client_id_list = var.audiences
thumbprint_list = setunion(
var.thumbprints,
(var.auto_thumbprint_enabled
? data.tls_certificate.this[*].certificates[0].sha1_fingerprint
: []
)
)
tags = merge(
{
"Name" = local.metadata.name
},
local.module_tags,
var.tags,
)
}