-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Create dedicated network component for confluent kafka [DEVOP-2387] #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat: Create dedicated network component for confluent kafka [DEVOP-2387] #12
Conversation
| @@ -0,0 +1,44 @@ | |||
| <!-- BEGIN_TF_DOCS --> | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
title/please describe the module
| } | ||
|
|
||
| output "confluent_resource_name" { | ||
| description = "The Confluent Resource Name of the Network." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please standardize whether descriptions have/don't have punctuations
| @@ -0,0 +1,28 @@ | |||
| resource "random_id" "suffix" { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add a README to this folder
MXfive
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just saw my comments from the other week were still pending.
| @@ -0,0 +1,10 @@ | |||
| terraform { | |||
| required_version = ">= 0.13" | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| required_version = ">= 0.13" | |
| required_version = ">= 1.3" |
| @@ -0,0 +1,3 @@ | |||
| module examples/confluent-dedicated-cluster | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we have this in the examples folder?
| default = "PEERING" | ||
| validation { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| default = "PEERING" | |
| validation { | |
| default = "PEERING" | |
| validation { |
| type = string | ||
| validation { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| type = string | |
| validation { | |
| type = string | |
| validation { |
| display_name = var.confluent_network_peering_name | ||
| gcp { | ||
| project = var.gcp_project_id | ||
| vpc_network = var.gcp_vpc_network | ||
| #customer_region = var.region | ||
| import_custom_routes = var.import_custom_routes | ||
| } | ||
| environment { | ||
| id = var.environment_id | ||
| } | ||
| network { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| display_name = var.confluent_network_peering_name | |
| gcp { | |
| project = var.gcp_project_id | |
| vpc_network = var.gcp_vpc_network | |
| #customer_region = var.region | |
| import_custom_routes = var.import_custom_routes | |
| } | |
| environment { | |
| id = var.environment_id | |
| } | |
| network { | |
| display_name = var.confluent_network_peering_name | |
| gcp { | |
| project = var.gcp_project_id | |
| vpc_network = var.gcp_vpc_network | |
| #customer_region = var.region | |
| import_custom_routes = var.import_custom_routes | |
| } | |
| environment { | |
| id = var.environment_id | |
| } | |
| network { |
Why the commented out customer_region ?
Please confirm that you have done the following before requesting reviews:
Description
Provision network and peering component for confluent Kafka
Terratest file to test the component
This change is