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.
9 lines
147 B
HCL
9 lines
147 B
HCL
variable "hetzner_api_token" {
|
|
sensitive = true
|
|
}
|
|
variable "netbox_url" {
|
|
sensitive = true
|
|
}
|
|
variable "netbox_api_token" {
|
|
sensitive = true
|
|
} |