generated from ExamProCo/terraform-beginner-bootcamp-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocals.tf
32 lines (32 loc) · 1.03 KB
/
locals.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
locals {
homes_path_aws = {
home_music_home_path = {
public_path = "/workspace/terraform-beginner-bootcamp-2023/public/music_home"
content_version = 2
}
home_video_home_path = {
public_path = "/workspace/terraform-beginner-bootcamp-2023/public/video_home"
content_version = 3
}
}
homes = {
home_music_home = {
name = "ANTYTILA - Bakhmut Fortress"
description = <<DESCRIPTION
There is no comments needed...
DESCRIPTION
domain_name = module.terrahome_aws["home_music_home_path"].cloudfront_url
town = "melomaniac-mansion"
content_version = 3
}
home_video_home = {
name = "Four rooms"
description = <<DESCRIPTION
One of the best movies by Kventin Tarantino
DESCRIPTION
domain_name = module.terrahome_aws["home_video_home_path"].cloudfront_url
town = "video-valley"
content_version = 2
}
}
}