Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-luna-valero committed Aug 30, 2024
1 parent bf4c9f2 commit bee08c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builder/vm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ data "openstack_images_image_v2" "ubuntu-24" {

resource "openstack_compute_instance_v2" "builder" {
name = "builder"
image_id = openstack_images_image_v2.ubuntu-24.id
flavor_id = var.flavor_id
image_id = "openstack_images_image_v2.ubuntu-24.id"
flavor_id = "${var.flavor_id}"
security_groups = ["default"]
user_data = file("cloud-init.yaml")
network {
Expand Down

0 comments on commit bee08c4

Please sign in to comment.