Add initial Terraform module structure for firewall and network
Some checks failed
Terraform Plan / plan (push) Failing after 0s
Some checks failed
Terraform Plan / plan (push) Failing after 0s
- Created main.tf, output.tf, and variables.tf for the firewall module. - Created main.tf, output.tf, and variables.tf for the network module. - Added provider configuration for Hetzner Cloud and NetBox in provider.tf. - Defined sensitive variables for Hetzner API token, NetBox URL, and NetBox API token in variables.tf.
This commit is contained in:
9
terraform/variables.tf
Normal file
9
terraform/variables.tf
Normal file
@@ -0,0 +1,9 @@
|
||||
variable "hetzner_api_token" {
|
||||
sensitive = true
|
||||
}
|
||||
variable "netbox_url" {
|
||||
sensitive = true
|
||||
}
|
||||
variable "netbox_api_token" {
|
||||
sensitive = true
|
||||
}
|
||||
Reference in New Issue
Block a user