init
This commit is contained in:
10
modules/route-association/main.tf
Normal file
10
modules/route-association/main.tf
Normal file
@ -0,0 +1,10 @@
|
||||
//라우팅 테이블 서브넷 연결
|
||||
resource "aws_route_table_association" "route-association" {
|
||||
# for_each = toset(var.subnet_ids)
|
||||
# subnet_id = each.value
|
||||
count = var.association_count
|
||||
subnet_id = var.subnet_ids[count.index]
|
||||
route_table_id = var.route_table_id
|
||||
|
||||
|
||||
}
|
||||
0
modules/route-association/outputs.tf
Normal file
0
modules/route-association/outputs.tf
Normal file
14
modules/route-association/variables.tf
Normal file
14
modules/route-association/variables.tf
Normal file
@ -0,0 +1,14 @@
|
||||
variable "subnet_ids" {
|
||||
description = "Subnet id"
|
||||
type = list(any)
|
||||
}
|
||||
|
||||
variable "route_table_id" {
|
||||
description = "Subnet id"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "association_count" {
|
||||
description = "Subnet count"
|
||||
type = number
|
||||
}
|
||||
Reference in New Issue
Block a user