-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmain.tf
51 lines (45 loc) · 1.2 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
provider "aws" {
region = "us-east-1"
}
###################################################
# AWS Account
###################################################
module "account" {
source = "../../modules/account"
# source = "tedilabs/account/aws//modules/account"
# version = "~> 0.26.0"
# This is alias for the AWS account.
name = "example-210925"
primary_contact = {
name = "John Doe"
company_name = "Example Inc."
country_code = "US"
state = "California"
city = "Los Angeles"
district = "Downtown"
address_line_1 = "123 Main St."
address_line_2 = "Suite 456"
address_line_3 = "Floor 7"
postal_code = "90012"
phone = "+1-555-555-5555"
website_url = "https://example.com"
}
billing_contact = {
name = "John Doe"
title = "Billing Manager"
email = "[email protected]"
phone = "+1-555-555-5555"
}
operation_contact = {
name = "Peter Smith"
title = "Operation Manager"
email = "[email protected]"
phone = "+1-333-333-3333"
}
security_contact = {
name = "Bob Smith"
title = "CISO"
email = "[email protected]"
phone = "+1-222-222-2222"
}
}