Skip to content

Image Name Makes Provider Crash #8

Open
m-mokhtarzadeh opened this issue May 17, 2022 · 0 comments
Open

Image Name Makes Provider Crash #8

m-mokhtarzadeh opened this issue May 17, 2022 · 0 comments
Labels
documentation Improvements or additions to documentation

Comments

@m-mokhtarzadeh
Copy link

m-mokhtarzadeh commented May 17, 2022

when i was try to install pfsense through terraform inside arvan my configuration make provider crash.
my source code is :

resource "arvan_iaas_abrak" "pfsense" {
  region = var.region
  flavor = "g1-1-1-0"
  name   = "pfsense"
  image {
    type = "distributions"
    name = "pfSense-CE"  # This Line Make Provider Crash
  }
  disk_size = 25
}

correct way is:

resource "arvan_iaas_abrak" "pfsense" {
  region = var.region
  flavor = "g1-1-1-0"
  name   = "pfsense"
  image {
    type = "distributions"
    name = "other/pfsense-ce"
  }
  disk_size = 25
}

Tested Version is 0.6.2

@m-mokhtarzadeh m-mokhtarzadeh changed the title Provider crash because of image name Image Name Makes Provider Crash May 18, 2022
@AlirezaKm AlirezaKm added the documentation Improvements or additions to documentation label May 18, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

2 participants