-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathstats.jenkins.io.tf
More file actions
37 lines (33 loc) · 1.14 KB
/
stats.jenkins.io.tf
File metadata and controls
37 lines (33 loc) · 1.14 KB
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
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"
virtual_network_subnet_ids = concat(
[
# Required for using and populating the resource
data.azurerm_subnet.publick8s.id,
],
# Required for managing the resource
local.app_subnets["infra.ci.jenkins.io"].agents,
)
bypass = ["AzureServices"]
}
tags = local.default_tags
}
resource "azurerm_storage_share" "stats_jenkins_io" {
name = "stats-jenkins-io"
storage_account_id = azurerm_storage_account.stats_jenkins_io.id
quota = 5
}