Difference between revisions of "Warning: Quoted references are deprecated"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
+
c
 
  │ Warning: Quoted references are deprecated
 
  │ Warning: Quoted references are deprecated
 
  │
 
  │
Line 11: Line 11:
 
  │ (and 8 more similar warnings elsewhere)
 
  │ (and 8 more similar warnings elsewhere)
 
  ╵
 
  ╵
 +
 +
Solution: remove quotes. Write <code>depends_on = [aws_lb.this]</code> in stead of <code>depends_on = ["aws_lb.this"]</code>
  
 
== Related ==
 
== Related ==

Revision as of 22:47, 21 October 2021

c ╷

│ Warning: Quoted references are deprecated
│
│   on .terraform/modules/path/to/elbv2.tf line 226, in resource "aws_lb_target_group" "this":
│  226:   depends_on = ["aws_lb.this"]
│
│ In this context, references are expected literally rather than in quotes. Terraform 0.11 and earlier required
│ quotes, but quoted references are now deprecated and will be removed in a future version of Terraform. Remove the
│ quotes surrounding this reference to silence this warning.
│
│ (and 8 more similar warnings elsewhere)
╵

Solution: remove quotes. Write depends_on = [aws_lb.this] in stead of depends_on = ["aws_lb.this"]

Related

See also

Advertising: