-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
61 lines (52 loc) · 2.9 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
################################################################################
# Provision Block
################################################################################
#provider "aws" {
# region = local.region
#}
provider "terratowns" {
endpoint = var.terratowns_endpoint
user_uuid = var.user_uuid
token = var.terratowns_access_token
}
locals {
region = "eu-central-1"
user_uuid = var.user_uuid
}
module "terratowns_missingo" {
source = "./modules/terrahouse"
public_path = var.missingo.public_path
content_version = var.missingo.content_version
user_uuid = var.user_uuid
}
resource "terratowns_home" "missingo" {
name = "==== Rick & Morty. Who Are They??? ===="
description = <<EOF
"Rick and Morty" is an American animated science fiction sitcom created by Justin Roiland and Dan Harmon. The show first premiered in 2013 and has gained a dedicated fan following.
The series primarily focuses on the adventures of its two main characters, Rick Sanchez and Morty Smith.
Rick Sanchez is an eccentric, brilliant, and often morally ambiguous scientist. He's known for his disregard for conventional rules and ethics.
Morty Smith, on the other hand, is Rick's easily influenced and somewhat naive grandson. Morty often finds himself reluctantly accompanying Rick on various interdimensional and extraterrestrial adventures.
EOF
domain_name = module.terratowns_missingo.cloudfront_url
town = "missingo"
content_version = 1
}
module "terratowns_video_valley" {
source = "./modules/terrahouse"
public_path = var.video_valley.public_path
content_version = var.video_valley.content_version
user_uuid = var.user_uuid
}
resource "terratowns_home" "video_valley" {
name = "==== Rick & Morty. Who Are They??? ===="
description = <<EOF
"Rick and Morty" is an American animated science fiction sitcom created by Justin Roiland and Dan Harmon. The show first premiered in 2013 and has gained a dedicated fan following.
The series primarily focuses on the adventures of its two main characters, Rick Sanchez and Morty Smith.
Rick Sanchez is an eccentric, brilliant, and often morally ambiguous scientist. He's known for his disregard for conventional rules and ethics.
Morty Smith, on the other hand, is Rick's easily influenced and somewhat naive grandson. Morty often finds himself reluctantly accompanying Rick on various interdimensional and extraterrestrial adventures.
The show blends elements of dark humor, satire, and absurdity. It explores a wide range of science fiction concepts, such as alternate dimensions, time travel, and advanced technology, while also addressing philosophical and ethical questions.
EOF
domain_name = module.terratowns_video_valley.cloudfront_url
town = "video-valley"
content_version = 1
}