-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterraform.tfvars.example
More file actions
42 lines (34 loc) · 1.19 KB
/
Copy pathterraform.tfvars.example
File metadata and controls
42 lines (34 loc) · 1.19 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
# Secret Configuration (sensitive data)
secret_data = {
# Uncomment if Classis Infrastructure access is needed
# "IBM_API_KEY" = "<Personal IBM Cloud API Key>"
# "IBM_API_USERNAME" = "apikey" # Don't change
}
# ConfigMap Configuration (non-sensitive data)
config_data = {
"IBM_CUSTOM_TAGS_LIST" = "tag1:value1,tag2:value2,tag3:value3"
"account" = "Account Name"
# Comment or edit if Classis Infrastructure access is needed
"RESOURCE_TO_TAG" = "resource_instances,virtual_servers,schematics_workspaces"
# Don't change the values below,
# unless you know what you are doing
"PUBLIC_CLOUD_NAME" = "IBM"
"policy" = "tag_resources"
}
# IBM Cloud Configuration
region = "us-east"
resource_group_name = "auto-tagger"
# Project Configuration
project_name = "auto-tagger"
job_name = "auto-tagger-job"
# Container Configuration
container_image = "quay.io/cloud-governance/cloud-governance:latest"
# Service ID Configuration
service_id_name = "auto-tagger"
# Scheduling Configuration
cron_expression = "0 0 */1 * *" # Daily at midnight UTC
timezone = "UTC"
# Resource Limits
cpu_limit = "0.125"
memory_limit = "250M"
retry_limit = 3