Skip to content

Commit

Permalink
fix: Adding project_id varaible in IBM2 example
Browse files Browse the repository at this point in the history
  • Loading branch information
srushti-patl committed Mar 19, 2024
1 parent 5dfa8fe commit c959c7a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/port-2-ibm2-connection/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module "create_port_2_ibm2_connection" {
connection_type = var.connection_type
notifications_type = var.notifications_type
notifications_emails = var.notifications_emails
project_id = var.project_id
bandwidth = var.bandwidth
purchase_order_number = var.purchase_order_number

Expand All @@ -25,5 +26,5 @@ module "create_port_2_ibm2_connection" {
zside_location = var.zside_location
zside_seller_region = var.zside_seller_region
zside_sp_name = var.zside_sp_name
additional_info = var.additional_info
additional_info = var.additional_info
}
5 changes: 5 additions & 0 deletions examples/port-2-ibm2-connection/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ variable "notifications_emails" {
description = "Array of contact emails"
type = list(string)
}
variable "project_id" {
description = "Subscriber-assigned project ID"
type = string
default = ""
}
variable "bandwidth" {
description = "Connection bandwidth in Mbps"
type = number
Expand Down

0 comments on commit c959c7a

Please sign in to comment.