Closed ghost closed 4 years ago
For fast schema updates, you should consider these instructions. If you want to have the updates more quickly, you may give a try to the fork in this PR which is automatically updated every day.
🤦 My bad. That works, thanks!
The
fastly_ip_ranges
data source now includesipv6_cidr_blocks
. The plugin does not recognize that property. I believe the provider schema needs to be updated.Prerequisites
Installation details
0.7.9
0.12.21
Terraform Configuration Files
resource "aws_security_group" "fastly_sg" { name = "Fastly" vpc_id = var.vpc_id
ingress { from_port = 443 protocol = "tcp" to_port = 443 cidr_blocks = [data.fastly_ip_ranges.fastly_ips.cidr_blocks] ipv6_cidr_blocks = [data.fastly_ip_ranges.fastly_ips.ipv6_cidr_blocks] } }
Expected Behavior
The IDE should display no warnings/errors.
Actual Behavior
The IDE indicates
Unresolved reference ipv6_cidr_blocks
Steps to Reproduce
.tf
file..tf
file.