Difference between revisions of "Terraform: subnet id"

From wikieduonline
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
* [[Terraform module: ec2-instance]]
 
* [[Terraform module: ec2-instance]]
  
* <code>[[aws ec2 describe-subnets]]</code>
+
 
 +
* <code>[[aws ec2 describe-subnets]] --output json | grep SubnetId</code>
 
* <code>[[aws ec2 describe-instances]]  | grep -i [[SubnetId]]</code>
 
* <code>[[aws ec2 describe-instances]]  | grep -i [[SubnetId]]</code>
  

Latest revision as of 11:59, 20 October 2023

Terraform subnet_id argument used in:


Examples[edit]

Errors[edit]

│ Error: Error in function call
│
│   on ../path_to_your/plan.tf line 7, in resource "aws_instance" "this":
│    7:   subnet_id = element(var.subnet_ids,count.index)
│     ├────────────────
│     │ count.index is 0
│     │ var.subnet_ids is empty list of string
│
│ Call to function "element" failed: cannot use element function with an empty list.

Related[edit]

tf show | grep subnet_id
tf show | egrep "subnet_id|connectivity_type"

See also[edit]

Advertising: