一般に、インライン リソースをリファクタリングし、別のボリューム リソースを使用して別のリソースとして外部に移動するにはどうすればよいですか。
たとえば、以下のように a をリファクタリングして a のblock_device
外に移動する方法はありopenstack_compute_instance_v2
ますか?
resource "openstack_compute_instance_v2" "instance_sakani_front_end_x" {
...
block_device {
uuid = ""
volume_size = 30
boot_index = 0
destination_type = "volume"
delete_on_termination = true
}
}