File: provider-aliases.tf

package info (click to toggle)
golang-github-hashicorp-terraform-config-inspect 0.0~git20230614.f32df32-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 472 kB
  • sloc: makefile: 2
file content (29 lines) | stat: -rw-r--r-- 294 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
terraform {
  required_providers {
    bleep = {
      configuration_aliases = [ bleep.bloop ]
    }
  }
}

provider "foo" {
  alias = "blue"
}

provider "foo" {
  alias = "red"
}

provider "bar" {
}

provider "bar" {
  alias = "yellow"
}

provider "baz" {
}

provider "empty" {
  alias = ""
}