QuackatronHQ / Gigarepo

Provider doesn't have version constraint TF-L0047
Bug risk
Major
3 occurrences in this check
Missing version constraint for provider "google" in "required_providers"
41  default = "us-west1-b"
42}
43
44resource "google_compute_instance" "gcp" {45  name         = "${var.instance_name}"
46  machine_type = "${var.machine_type}"
47  zone         = "${var.gcp_zone}"
Missing version constraint for provider "aws" in "required_providers"
112  cidr_blocks = ["0.0.0.0/0"]
113}
114
115resource "aws_elasticache_replication_group" "resource" {116  replication_group_id = "foo"
117  replication_group_description = "foobar cluster"
118
Missing version constraint for provider "aws_central" in "required_providers"
  6  region = "${var.aws_region}"
  7}
  8
  9provider "aws_central" { 10  alias  = "central"
 11  region = "us-east-1"
 12}