-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathvariables.tf
More file actions
53 lines (45 loc) · 1.49 KB
/
variables.tf
File metadata and controls
53 lines (45 loc) · 1.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
variable "environment_display_name" {
default = "example-git-integration-environment"
description = "Display name of the example environment."
type = string
}
variable "location" {
default = "europe"
description = "Power Platform geography for the example environment."
type = string
}
variable "azure_region" {
default = "northeurope"
description = "Azure region for the Dataverse-backed example environment."
type = string
}
variable "security_group_id" {
default = "00000000-0000-0000-0000-000000000000"
description = "Security group ID for Dataverse provisioning. Use the zero GUID to disable."
type = string
}
variable "git_provider" {
default = "AzureDevOps"
description = "Git provider to bind. Supported value is AzureDevOps."
type = string
}
variable "scope" {
default = "Environment"
description = "Source control integration scope. Use Environment for environment-scoped bindings or Solution when pairing with powerplatform_solution_git_branch."
type = string
}
variable "organization_name" {
default = "example-org"
description = "Git organization or owner name."
type = string
}
variable "project_name" {
default = "example-project"
description = "Git project name used for Azure DevOps bindings."
type = string
}
variable "repository_name" {
default = "example-repo"
description = "Git repository name to bind to the environment."
type = string
}