Difference between revisions of "Key name"

From wikieduonline
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
{{lc}}
 
{{lc}}
key_name
+
:<code>key_name</code>
 
* https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/instance#key_name
 
* https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/instance#key_name
  
 
+
== Example ==
 
  resource "aws_instance" "myUbuntuMicroInstance" {
 
  resource "aws_instance" "myUbuntuMicroInstance" {
 
   ami          = data.aws_ami.ubuntu.id
 
   ami          = data.aws_ami.ubuntu.id
Line 29: Line 29:
 
== See also ==
 
== See also ==
 
* {{aws_instance}}
 
* {{aws_instance}}
* {{tf aws}}
 
  
 
[[Category:Terraform]]
 
[[Category:Terraform]]

Latest revision as of 07:12, 15 March 2023

key_name

Example[edit]

resource "aws_instance" "myUbuntuMicroInstance" {
 ami           = data.aws_ami.ubuntu.id
 instance_type = "t3.micro"
 key_name = "YourKeyName" 

 tags = {
   Name = "MyInstanceName"
 }
}

resource "aws_key_pair" "YourKeyName" {
 key_name   = "YourKeyName"
 public_key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQD3F6tyPEFEzV0LX3X8BsXdMsQz1x2cEikKDEY0aIj41qgxMCP/iteneqXSIFZBp5vizPvaoIR3Um9xK7PGoW8giupGn+EPuxIA4cDM4vzOqOkiMPhz5XK0whEjkVzTo4+S0puvDZuwIsdiW9mxhJc7tgBNL0cYlWSYVkz4G/fslNfRPW5mYAM49f4fhtxPb5ok4Q2Lg9dPKVHO/Bgeu5woMc7RY0p1ej6D4CKFE6lymSDJpW0YHX/wqE9+cfEauh7xZcG0q9t2ta6F6fmX0agvpFyZo8aFbXeUBr7osSCJNgvavWbM/06niWrOvYX2xwWdhXmXSrbX8ZbabVohBK41 [email protected]"
}

Related[edit]

See also[edit]

Advertising: