File tree 3 files changed +7
-10
lines changed
templates/terraform/examples
third_party/terraform/services/chronicle
3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 1
- # Copyright 2024 Google Inc.
1
+ # Copyright 2025 Google Inc.
2
2
# Licensed under the Apache License, Version 2.0 (the "License");
3
3
# you may not use this file except in compliance with the License.
4
4
# You may obtain a copy of the License at
@@ -35,8 +35,6 @@ examples:
35
35
min_version : ' beta'
36
36
vars :
37
37
reference_list_id : reference_list_id
38
- description : referencelist-description
39
- reference_list_entry_value : " referencelist-entry-value"
40
38
test_env_vars :
41
39
chronicle_id : ' CHRONICLE_ID'
42
40
@@ -133,7 +131,6 @@ properties:
133
131
description : |2-
134
132
135
133
Possible values:
136
- REFERENCE_LIST_SYNTAX_TYPE_UNSPECIFIED
137
134
REFERENCE_LIST_SYNTAX_TYPE_PLAIN_TEXT_STRING
138
135
REFERENCE_LIST_SYNTAX_TYPE_REGEX
139
136
REFERENCE_LIST_SYNTAX_TYPE_CIDR
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ resource "google_chronicle_reference_list" "{{$.PrimaryResourceId}}" {
3
3
location = "us"
4
4
instance = "{{index $.TestEnvVars "chronicle_id"}}"
5
5
reference_list_id = "{{index $.Vars "reference_list_id"}}"
6
- description = "{{index $.Vars " description"}} "
6
+ description = "referencelist- description"
7
7
entries {
8
- value = "{{index $.Vars "reference_list_entry_value"}} "
8
+ value = "referencelist-entry-value "
9
9
}
10
10
syntax_type = "REFERENCE_LIST_SYNTAX_TYPE_PLAIN_TEXT_STRING"
11
11
}
Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ resource "google_chronicle_reference_list" "example" {
52
52
location = "us"
53
53
instance = "%{chronicle_id}"
54
54
reference_list_id = "tf_test_reference_list_id%{random_suffix}"
55
- description = "tf-test- referencelist-description%{random_suffix} "
55
+ description = "referencelist-description"
56
56
entries {
57
- value = "tf-test- referencelist-entry-value%{random_suffix} "
57
+ value = "referencelist-entry-value"
58
58
}
59
59
syntax_type = "REFERENCE_LIST_SYNTAX_TYPE_PLAIN_TEXT_STRING"
60
60
}
@@ -68,9 +68,9 @@ resource "google_chronicle_reference_list" "example" {
68
68
location = "us"
69
69
instance = "%{chronicle_id}"
70
70
reference_list_id = "tf_test_reference_list_id%{random_suffix}"
71
- description = "tf-test- referencelist-description-updated%{random_suffix} "
71
+ description = "referencelist-description-updated"
72
72
entries {
73
- value = "tf-test- referencelist-entry-value-updated%{random_suffix} "
73
+ value = "referencelist-entry-value-updated"
74
74
}
75
75
syntax_type = "REFERENCE_LIST_SYNTAX_TYPE_REGEX"
76
76
}
You can’t perform that action at this time.
0 commit comments