@@ -71,6 +71,7 @@ type FlatConfig struct {
7171 StorageUUID * string `mapstructure:"storage_uuid" cty:"storage_uuid"`
7272 StorageName * string `mapstructure:"storage_name" cty:"storage_name"`
7373 TemplatePrefix * string `mapstructure:"template_prefix" cty:"template_prefix"`
74+ IsTemplateNameFixed * bool `mapstructure:"is_template_name_fixed" cty:"is_template_name_fixed"`
7475 StorageSize * int `mapstructure:"storage_size" cty:"storage_size"`
7576 Timeout * string `mapstructure:"state_timeout_duration" cty:"state_timeout_duration"`
7677 CloneZones []string `mapstructure:"clone_zones" cty:"clone_zones"`
@@ -153,6 +154,7 @@ func (*FlatConfig) HCL2Spec() map[string]hcldec.Spec {
153154 "storage_uuid" : & hcldec.AttrSpec {Name : "storage_uuid" , Type : cty .String , Required : false },
154155 "storage_name" : & hcldec.AttrSpec {Name : "storage_name" , Type : cty .String , Required : false },
155156 "template_prefix" : & hcldec.AttrSpec {Name : "template_prefix" , Type : cty .String , Required : false },
157+ "is_template_name_fixed" : & hcldec.AttrSpec {Name : "is_template_name_fixed" , Type : cty .Bool , Required : false },
156158 "storage_size" : & hcldec.AttrSpec {Name : "storage_size" , Type : cty .Number , Required : false },
157159 "state_timeout_duration" : & hcldec.AttrSpec {Name : "state_timeout_duration" , Type : cty .String , Required : false },
158160 "clone_zones" : & hcldec.AttrSpec {Name : "clone_zones" , Type : cty .List (cty .String ), Required : false },
0 commit comments