File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
infra/azure/terraform/k8s-infra-prow-build Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -45,3 +45,14 @@ resource "azurerm_resource_group" "rg" {
45
45
}
46
46
}
47
47
48
+
49
+ resource "azurerm_storage_account" "stkops" {
50
+ name = var. kops_storage_account_name
51
+ location = module. azure_region . location
52
+ resource_group_name = azurerm_resource_group. rg . name
53
+ account_tier = " Standard"
54
+ min_tls_version = " TLS1_0"
55
+ account_replication_type = " RAGRS"
56
+ cross_tenant_replication_enabled = true
57
+ depends_on = [azurerm_resource_group . rg ]
58
+ }
Original file line number Diff line number Diff line change @@ -29,3 +29,8 @@ variable "default_region" {
29
29
type = string
30
30
default = " eastus2"
31
31
}
32
+
33
+ variable "kops_storage_account_name" {
34
+ type = string
35
+ default = " stkopsstatestore"
36
+ }
You can’t perform that action at this time.
0 commit comments