-
Notifications
You must be signed in to change notification settings - Fork 0
/
devops-variables.tf
93 lines (71 loc) · 1.9 KB
/
devops-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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
## Copyright (c) 2021, Oracle and/or its affiliates.
## All rights reserved. The Universal Permissive License (UPL), Version 1.0 as shown at http://oss.oracle.com/licenses/upl
variable "log_group_display_name" {
default = "devops-logs"
}
variable "notification_topic_name" {
default = "devops-topic"
}
variable "execute_deployment" {
default = false
}
variable "project_description" {
default = "DevOps Project for OKE deployment"
}
variable "environment_display_name" {
default = "DevOps OKE Environment"
}
variable "environment_description" {
default = "OKE environment that can be targeted by devops"
}
variable "environment_type" {
default = "OKE_CLUSTER"
}
variable "project_logging_config_display_name_prefix" {
default = "demo-"
}
variable "project_logging_config_is_archiving_enabled" {
default = false
}
variable "project_logging_config_retention_period_in_days" {
default = 30
}
variable "deploy_artifact_source_type" {
default = "INLINE"
}
variable "deploy_artifact_type" {
default = "KUBERNETES_MANIFEST"
}
variable "argument_substitution_mode" {
default = "NONE"
}
variable "create_dynamic_group_for_devops_pipln_in_compartment" {
default = true
}
variable "deploy_pipeline_display_name" {
default = "devops-oke-pipeline"
}
variable "deploy_pipeline_description" {
default = "Devops Pipleline demo for OKE"
}
variable "deploy_stage_deploy_stage_type" {
default = "OKE_DEPLOYMENT"
}
variable "deploy_stage_namespace" {
default = "default"
}
variable "deploy_stage_display_name" {
default = "deploy_OKE"
}
variable "deploy_stage_description" {
default = "test deployment to OKE"
}
variable "deploy_pipeline_deploy_pipeline_parameters_items_default_value" {
default = "defaultValue"
}
variable "deploy_pipeline_deploy_pipeline_parameters_items_description" {
default = "description"
}
variable "deploy_pipeline_deploy_pipeline_parameters_items_name" {
default = "name"
}