Initial commit: Terraform configurations for multiple cloud providers
This commit is contained in:
17
modules/network/variables.tf
Normal file
17
modules/network/variables.tf
Normal file
@@ -0,0 +1,17 @@
|
||||
variable "network_name" {
|
||||
description = "网络名称"
|
||||
type = string
|
||||
default = "my-network"
|
||||
}
|
||||
|
||||
variable "cidr_block" {
|
||||
description = "CIDR 地址块"
|
||||
type = string
|
||||
default = "10.0.0.0/16"
|
||||
}
|
||||
|
||||
variable "tags" {
|
||||
description = "资源标签"
|
||||
type = map(string)
|
||||
default = {}
|
||||
}
|
||||
Reference in New Issue
Block a user