Skip to content

Commit

Permalink
Fill all fields
Browse files Browse the repository at this point in the history
  • Loading branch information
PerlMonker303 committed Mar 12, 2025
1 parent 36841c6 commit d632238
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ resource "google_gemini_code_tools_setting" "{{$.PrimaryResourceId}}" {
location = "global"
labels = {"my_key": "my_value"}
enabled_tool {
handle = "my_handle1"
tool = "my_tool1"
}
enabled_tool {
handle = "my_handle2"
tool = "my_tool2"
handle = "my_handle"
tool = "my_tool"
account_connector = "my_con"
config {
key = "my_key"
value = "my_value"
}
uri_override = "my_uri_override"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,15 @@ resource "google_gemini_code_tools_setting" "example" {
provider = google-beta
code_tools_setting_id = "%{setting_id}"
location = "global"
enabled_tool = {
handle = "my_handle1"
tool = "my_tool1"
enabled_tool {
handle = "my_handle"
tool = "my_tool"
account_connector = "my_con"
config {
key = "my_key"
value = "my_value"
}
uri_override = "my_uri_override"
}
}
`, context)
Expand All @@ -66,12 +72,14 @@ resource "google_gemini_code_tools_setting" "example" {
location = "global"
labels = {"my_key" = "my_value"}
enabled_tool {
handle = "my_handle1"
tool = "my_tool1"
}
enabled_tool {
handle = "my_handle2"
tool = "my_tool2"
handle = "my_handle"
tool = "my_tool"
account_connector = "my_con"
config {
key = "my_key"
value = "my_value"
}
uri_override = "my_uri_override"
}
}
`, context)
Expand Down

0 comments on commit d632238

Please sign in to comment.