tfmcp

  • example
variable "file_prefix" { description = "ä½œęˆć•ć‚Œć‚‹ćƒ•ć‚”ć‚¤ćƒ«ć®ęŽ„é ­č¾ž" type = string default = "tfmcp" } variable "pet_length" { description = "ćƒšćƒƒćƒˆåć®é•·ć•" type = number default = 2 validation { condition = var.pet_length > 1 && var.pet_length < 5 error_message = "ćƒšćƒƒćƒˆåć®é•·ć•ćÆ2-4恮間恧ćŖ恑悌恰ćŖć‚Šć¾ć›ć‚“ć€‚" } } variable "priority_max" { description = "å„Ŗ先åŗ¦ć®ęœ€å¤§å€¤" type = number default = 100 } variable "tags" { description = "ćƒŖć‚½ćƒ¼ć‚¹ć«čæ½åŠ ć™ć‚‹ć‚æ悰" type = map(string) default = { Environment = "development" Project = "tfmcp-demo" Owner = "tfmcp-user" } }