forked from marispace-x/MinimumViableMarispace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
44 lines (44 loc) · 1.41 KB
/
variables.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
# supply the tenant ID for your Azure Tenant here
variable "tenant_id" {
default = "3d577f59-0e5f-4de1-bfa1-1d5600e272dd"
}
# App registration name for the Federated Credential for GH Actions
variable "gh_actions_appname" {
default = "GithubActions-MVD"
}
# App registration name for the MVD runtimes (=connectors)
variable "mvd_runtimes_appname" {
default = "MVD-Runtimes"
}
# Name for the federated credential: GH Actions can deploy resources (on push)
variable "application_fc_name" {
default = "GithubActions-MVD-FC"
}
# Name for the federated credential: GH Actions can deploy resources (on pull-request)
variable "application_fc_pr_name" {
default = "GithubActions-MVD-FC-Pullrequest"
}
# name of your fork of MVD
variable "github_repo" {
default = "marispace-north-io/MinimumViableDataspace"
}
# name of the storage account that'll hold the Terraform State for MVD deployments
variable "tf_state_storageaccount" {
default = "mvdtfstatenorth"
}
# name of the storage container that'll hold the Terraform State for MVD deployments
variable "tf_state_container" {
default = "mvdtfstate"
}
# RG location
variable "common_resourcegroup_location" {
default = "northeurope"
}
# Resource group that'll contain common resources, such as the ACR
variable "common_resourcegroup" {
default = "mvd-common"
}
# Name of the Azure Container Registry that'll hold all docker images
variable "acr_name" {
default = "acrmvdnorth"
}