Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

element function in terraform

#Element retrieves single element from the list
element(list, index)

#Example to Understand
element(["a", "b", "c"], 1)
b

element(["a", "b" , "c"], 0)
a
Comment

terraform element function

resource "aws_instance" "ec2_instance" {

count = 2
user_data = element([data.template_file.user_data_file1.rendered, 
                     data.template_file.user_data_file2.rendered], 
                     count.index)

tags = {
    Name = element(var.ec2_instance_names, count.index)
  }

}
Comment

PREVIOUS NEXT
Code Example
Shell :: remove untracked files 
Shell :: echo variable bash 
Shell :: clone branch in git 
Shell :: heroku upload local database 
Shell :: docker install linux mint 
Shell :: -bash: bin/startup.sh: Permission denied 
Shell :: functions in linux 
Shell :: how to install spark on macos 
Shell :: clear arp table ubuntu] 
Shell :: how to open terminal as administrator in ubuntu 
Shell :: igraph 
Shell :: git readme show image 
Shell :: mv all files in directory to parent 
Shell :: grep recursive file extension 
Shell :: bash variable name to function 
Shell :: Required Windows feature(s) not enabled : Hyper-V and Containers 
Shell :: linux change azert 
Shell :: install ssh-agent 
Shell :: history terminal commad getting limited 
Shell :: homebrew version 
Shell :: How to remove local (untracked) files from the current Git working tree 
Shell :: install wordpress ubuntu 20.04 
Shell :: check network card name linux 
Shell :: how to see the size of /var 
Shell :: stop nginx service 
Shell :: directory path view 
Shell :: Module enzyme-to-json/serializer in the snapshotSerializers option was not found. <rootDir is 
Shell :: too many security failures vnc 
Shell :: delete vendor file 
Shell :: list apt installed programs 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =