Advertisement
Guest User

terraform plan

a guest
Apr 16th, 2020
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.46 KB | None | 0 0
  1.   # module.instance.openstack_compute_instance_v2.server[0] will be updated in-place
  2.   ~ resource "openstack_compute_instance_v2" "server" {
  3.         access_ip_v4        = "IP"
  4.         all_metadata        = {}
  5.         all_tags            = []
  6.         availability_zone   = "nova"
  7.         flavor_id           = "4335773d-64ae-4c54-b0e4-4cb26b7dda75"
  8.       ~ flavor_name         = "FLAVOR_1" -> "FLAVOR_2"
  9.         force_delete        = false
  10.         id                  = "8b2c680a-183c-49ce-b3bc-ca43a6201e33"
  11.         image_id            = "Attempt to boot from volume - no image supplied"
  12.         name                = "instance-1"
  13.         power_state         = "active"
  14.         security_groups     = [
  15.             "ALLOW_ALL",
  16.             "default",
  17.         ]
  18.         stop_before_destroy = false
  19.         tags                = []
  20.         user_data           = "x"
  21.  
  22.         block_device {
  23.             boot_index            = 0
  24.             delete_on_termination = true
  25.             destination_type      = "volume"
  26.             source_type           = "volume"
  27.             uuid                  = "a77d2c36-5c8b-418d-8c53-9deac1e9a800"
  28.             volume_size           = 0
  29.         }
  30.  
  31.         network {
  32.             access_network = false
  33.             fixed_ip_v4    = "IP"
  34.             mac            = "fa:16:3e:93:50:1d"
  35.             name           = "vlan"
  36.             uuid           = "b2976616-08ee-47c1-9918-b9bb23777a50"
  37.         }
  38.  
  39.         scheduler_hints {
  40.             additional_properties = {}
  41.             different_host        = []
  42.             group                 = "30ae35ba-e01f-4024-b3ac-da1637dae6b0"
  43.             query                 = []
  44.             same_host             = []
  45.         }
  46.     }
  47.  
  48.   # module.instance.openstack_compute_instance_v2.server[1] will be updated in-place
  49.   ~ resource "openstack_compute_instance_v2" "server" {
  50.         access_ip_v4        = "IP"
  51.         all_metadata        = {}
  52.         all_tags            = []
  53.         availability_zone   = "nova"
  54.         flavor_id           = "4335773d-64ae-4c54-b0e4-4cb26b7dda75"
  55.       ~ flavor_name         = "FLAVOR_1" -> "FLAVOR_2"
  56.         force_delete        = false
  57.         id                  = "bc6006b3-8663-4006-b01f-402ad96fdfbd"
  58.         image_id            = "Attempt to boot from volume - no image supplied"
  59.         name                = "instance-2"
  60.         power_state         = "active"
  61.         security_groups     = [
  62.             "ALLOW_ALL",
  63.             "default",
  64.         ]
  65.         stop_before_destroy = false
  66.         tags                = []
  67.         user_data           = "x"
  68.  
  69.         block_device {
  70.             boot_index            = 0
  71.             delete_on_termination = true
  72.             destination_type      = "volume"
  73.             source_type           = "volume"
  74.             uuid                  = "27b06e8b-3590-4bf3-a9f8-13c09ca522e4"
  75.             volume_size           = 0
  76.         }
  77.  
  78.         network {
  79.             access_network = false
  80.             fixed_ip_v4    = "IP"
  81.             mac            = "fa:16:3e:7d:e1:32"
  82.             name           = "vlan"
  83.             uuid           = "b2976616-08ee-47c1-9918-b9bb23777a50"
  84.         }
  85.  
  86.         scheduler_hints {
  87.             additional_properties = {}
  88.             different_host        = []
  89.             group                 = "30ae35ba-e01f-4024-b3ac-da1637dae6b0"
  90.             query                 = []
  91.             same_host             = []
  92.         }
  93.     }
  94.  
  95. Plan: 0 to add, 2 to change, 0 to destroy.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement