chaostoolkit-examples/l7ilb-urlmap-fault-injection-gke/chaos-experiment/terraform/variables.tf (47 lines of code) (raw):

# # Copyright 2023 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # variable "project_id" { type = string description = "The project ID to deploy the resources in" } variable "vm_name" { description = "name of the vm" type = string } variable "folder" { description = "folder for generated script files" type = string } variable "region" { type = string description = "The region in which to deploy the resources" default = "us-central1" } variable "zone" { type = string description = "The zone in which to deploy the VM" default = "us-central1-a" } variable "url_map_target_name" { type = string description = "The path matcher name for injecting faults" default = "chaos-int-l7-lb-path-matcher-gke" } variable "url_map_name" { type = string description = "Url map name for the L7 ILB" default = "chaos-l7-ilb-gke" } variable "tf_service_account" { type = string description = "Service account for creating terraform resources for the L7 ILB Chaos experiment" } variable "compute_ip_address" { type = string description = "IP address for L7 internal load balancer forwarding rule" default = "10.1.2.23" } variable "gke_network_self_link" { type = string } variable "app_network_self_link" { type = string }