-
Notifications
You must be signed in to change notification settings - Fork 28
/
stats.jenkins.io.tf
38 lines (34 loc) · 1.44 KB
/
stats.jenkins.io.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
resource "azurerm_resource_group" "stats_jenkins_io" {
name = "stats-jenkins-io"
location = var.location
tags = local.default_tags
}
resource "azurerm_storage_account" "stats_jenkins_io" {
name = "statsjenkinsio"
resource_group_name = azurerm_resource_group.stats_jenkins_io.name
location = azurerm_resource_group.stats_jenkins_io.location
account_tier = "Standard"
account_replication_type = "ZRS"
account_kind = "StorageV2"
https_traffic_only_enabled = true
min_tls_version = "TLS1_2"
network_rules {
default_action = "Deny"
ip_rules = flatten(concat(
[for key, value in module.jenkins_infra_shared_data.admin_public_ips : value]
))
virtual_network_subnet_ids = [
data.azurerm_subnet.publick8s_tier.id,
data.azurerm_subnet.privatek8s_tier.id, # required for management from infra.ci (terraform)
data.azurerm_subnet.infra_ci_jenkins_io_sponsorship_ephemeral_agents.id, # infra.ci Azure VM agents
data.azurerm_subnet.infraci_jenkins_io_kubernetes_agent_sponsorship.id, # infra.ci container VM agents
]
bypass = ["AzureServices"]
}
tags = local.default_tags
}
resource "azurerm_storage_share" "stats_jenkins_io" {
name = "stats-jenkins-io"
storage_account_name = azurerm_storage_account.stats_jenkins_io.name
quota = 5
}