terraform OpenStack 리소스 생성 샘플
1. Flavor 생성 resource "openstack_compute_flavor_v2" "C2M2D20" { name = "C2M2D20" ram = "2048" vcpus = "2" disk = "20" is_public = "true" } 2. Image 생성 resource "openstack_images_image_v2" "rhel7_6" { name = "rhel7.6" local_file_path = "/home/test/rhel7.qcow" container_format = "bare" disk_format = "qcow2" visibility = "public" properties = { key = "value" } } 3. Network 및 Subnet 생성 resource "ope..