16 lines
		
	
	
		
			301 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			301 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
# AWS connection & authentication
 | 
						|
variable "aws_access_key" {
 | 
						|
  type        = string
 | 
						|
  description = "AWS access key"
 | 
						|
}
 | 
						|
 | 
						|
variable "aws_secret_key" {
 | 
						|
  type        = string
 | 
						|
  description = "AWS secret key"
 | 
						|
}
 | 
						|
 | 
						|
variable "aws_region" {
 | 
						|
  type        = string
 | 
						|
  description = "AWS region"
 | 
						|
}
 |