memes / terraform-provider-f5xc

Apache License 2.0
0 stars 0 forks source link

doc: f5xc_blindfold_file example is using the wrong resource #21

Closed memes closed 3 months ago

memes commented 3 months ago

Current example:

resource "f5xc_blindfold" "creds" {
  path = "/path/to/sa.json"
  policy_document = {
    name      = "ves-io-allow-volterra"
    namespace = "shared"
  }
}

Should be:

resource "f5xc_blindfold_file" "creds" {
  path = "/path/to/sa.json"
  policy_document = {
    name      = "ves-io-allow-volterra"
    namespace = "shared"
  }
}