-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
contacts.tf
68 lines (53 loc) · 2.16 KB
/
contacts.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
###################################################
# Primary Contact
###################################################
# INFO: Not supported attributes
# - `account_id`
resource "aws_account_primary_contact" "this" {
count = var.primary_contact != null ? 1 : 0
full_name = var.primary_contact.name
company_name = var.primary_contact.company_name
country_code = var.primary_contact.country_code
state_or_region = var.primary_contact.state
city = var.primary_contact.city
district_or_county = var.primary_contact.district
address_line_1 = var.primary_contact.address_line_1
address_line_2 = var.primary_contact.address_line_2
address_line_3 = var.primary_contact.address_line_3
postal_code = var.primary_contact.postal_code
phone_number = var.primary_contact.phone
website_url = var.primary_contact.website_url
}
###################################################
# Alternate Contacts
###################################################
# INFO: Not supported attributes
# - `account_id`
resource "aws_account_alternate_contact" "billing" {
count = var.billing_contact != null ? 1 : 0
alternate_contact_type = "BILLING"
name = var.billing_contact.name
title = try(var.billing_contact.title, "Billing Manager")
email_address = var.billing_contact.email
phone_number = var.billing_contact.phone
}
# INFO: Not supported attributes
# - `account_id`
resource "aws_account_alternate_contact" "operation" {
count = var.operation_contact != null ? 1 : 0
alternate_contact_type = "OPERATIONS"
name = var.operation_contact.name
title = try(var.operation_contact.title, "Operation Manager")
email_address = var.operation_contact.email
phone_number = var.operation_contact.phone
}
# INFO: Not supported attributes
# - `account_id`
resource "aws_account_alternate_contact" "security" {
count = var.security_contact != null ? 1 : 0
alternate_contact_type = "SECURITY"
name = var.security_contact.name
title = try(var.security_contact.title, "Security Manager")
email_address = var.security_contact.email
phone_number = var.security_contact.phone
}