-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathmain.tf
96 lines (81 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
locals {
name_prefix = var.cluster_name
}
resource "azurerm_resource_group" "main" {
name = "${local.name_prefix}-rg"
location = var.location
}
## Network resources
resource "azurerm_virtual_network" "main" {
name = "${local.name_prefix}-vnet"
location = azurerm_resource_group.main.location
resource_group_name = azurerm_resource_group.main.name
address_space = [var.aro_virtual_network_cidr_block]
tags = var.tags
}
resource "azurerm_subnet" "control_plane_subnet" {
name = "${local.name_prefix}-cp-subnet"
resource_group_name = azurerm_resource_group.main.name
virtual_network_name = azurerm_virtual_network.main.name
address_prefixes = [var.aro_control_subnet_cidr_block]
service_endpoints = ["Microsoft.Storage", "Microsoft.ContainerRegistry"]
enforce_private_link_service_network_policies = true
enforce_private_link_endpoint_network_policies = true
}
resource "azurerm_subnet" "machine_subnet" {
name = "${local.name_prefix}-machine-subnet"
resource_group_name = azurerm_resource_group.main.name
virtual_network_name = azurerm_virtual_network.main.name
address_prefixes = [var.aro_machine_subnet_cidr_block]
service_endpoints = ["Microsoft.Storage", "Microsoft.ContainerRegistry"]
}
## ARO Cluster
resource "azureopenshift_redhatopenshift_cluster" "cluster" {
name = var.cluster_name
location = azurerm_resource_group.main.location
resource_group_name = azurerm_resource_group.main.name
tags = var.tags
master_profile {
subnet_id = azurerm_subnet.control_plane_subnet.id
}
worker_profile {
subnet_id = azurerm_subnet.machine_subnet.id
}
service_principal {
client_id = azuread_application.cluster.application_id
client_secret = azuread_application_password.cluster.value
}
cluster_profile {
pull_secret = file(var.pull_secret_path)
}
depends_on = [
azurerm_subnet.machine_subnet,
azurerm_subnet.control_plane_subnet,
azurerm_role_assignment.vnet
]
}
resource "shell_script" "day2ops" {
lifecycle_commands {
create = templatefile(
"${path.module}/templates/e2e.tftpl",
{
cluster_name = var.cluster_name,
resource_group_name = azurerm_resource_group.main.name
})
delete = templatefile(
"${path.module}/templates/e2e.tftpl",
{
cluster_name = var.cluster_name,
resource_group_name = azurerm_resource_group.main.name
})
read = templatefile(
"${path.module}/templates/e2e.tftpl",
{
cluster_name = var.cluster_name,
resource_group_name = azurerm_resource_group.main.name
})
}
depends_on = [
azureopenshift_redhatopenshift_cluster.cluster
]
}