mirror of https://github.com/kubernetes/kops.git
update integration tests
This commit is contained in:
parent
7f6e125733
commit
ee5d8a3435
|
@ -429,6 +429,10 @@ resource "aws_launch_template" "bastion-bastionuserdata-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.bastionuserdata.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -493,6 +497,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-bastionuserdata-exampl
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.bastionuserdata.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -553,6 +561,10 @@ resource "aws_launch_template" "nodes-bastionuserdata-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.bastionuserdata.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -265,6 +265,10 @@
|
|||
},
|
||||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "required"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -398,6 +402,10 @@
|
|||
},
|
||||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.medium",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"Monitoring": {
|
||||
"Enabled": true
|
||||
},
|
||||
|
|
|
@ -126,6 +126,9 @@ spec:
|
|||
rootVolumeEncryption: true
|
||||
subnets:
|
||||
- us-test-1a
|
||||
instanceMetadata:
|
||||
httpTokens: required
|
||||
httpPutResponseHopLimit: 1
|
||||
additionalUserData:
|
||||
- name: myscript.sh
|
||||
type: text/x-shellscript
|
||||
|
|
|
@ -126,6 +126,9 @@ spec:
|
|||
rootVolumeEncryption: true
|
||||
subnets:
|
||||
- us-test-1a
|
||||
instanceMetadata:
|
||||
httpTokens: required
|
||||
httpPutResponseHopLimit: 1
|
||||
additionalUserData:
|
||||
- name: myscript.sh
|
||||
type: text/x-shellscript
|
||||
|
|
|
@ -297,6 +297,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-complex-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "required"
|
||||
}
|
||||
name = "master-us-test-1a.masters.complex.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -371,6 +375,10 @@ resource "aws_launch_template" "nodes-complex-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
monitoring {
|
||||
enabled = true
|
||||
}
|
||||
|
|
|
@ -266,6 +266,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-compress-example-com"
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.compress.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -325,6 +329,10 @@ resource "aws_launch_template" "nodes-compress-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.compress.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -221,6 +221,10 @@
|
|||
"ImageId": "ami-11400000",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.containerd.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -328,6 +332,10 @@
|
|||
"ImageId": "ami-11400000",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.containerd.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
|
|
@ -387,6 +387,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-existing-iam-example-c
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.existing-iam.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -451,6 +455,10 @@ resource "aws_launch_template" "master-us-test-1b-masters-existing-iam-example-c
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1b.masters.existing-iam.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -515,6 +523,10 @@ resource "aws_launch_template" "master-us-test-1c-masters-existing-iam-example-c
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1c.masters.existing-iam.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -575,6 +587,10 @@ resource "aws_launch_template" "nodes-existing-iam-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.existing-iam.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -219,6 +219,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.minimal.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -324,6 +328,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.minimal.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
|
|
@ -468,6 +468,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-existingsg-example-com
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.existingsg.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -532,6 +536,10 @@ resource "aws_launch_template" "master-us-test-1b-masters-existingsg-example-com
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1b.masters.existingsg.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -596,6 +604,10 @@ resource "aws_launch_template" "master-us-test-1c-masters-existingsg-example-com
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1c.masters.existingsg.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -656,6 +668,10 @@ resource "aws_launch_template" "nodes-existingsg-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.existingsg.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -236,6 +236,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.externallb.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -343,6 +347,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.externallb.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
|
|
@ -281,6 +281,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-externallb-example-com
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.externallb.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -341,6 +345,10 @@ resource "aws_launch_template" "nodes-externallb-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.externallb.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -345,6 +345,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-externalpolicies-examp
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.externalpolicies.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -411,6 +415,10 @@ resource "aws_launch_template" "nodes-externalpolicies-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
monitoring {
|
||||
enabled = true
|
||||
}
|
||||
|
|
|
@ -439,6 +439,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-ha-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.ha.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -503,6 +507,10 @@ resource "aws_launch_template" "master-us-test-1b-masters-ha-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1b.masters.ha.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -567,6 +575,10 @@ resource "aws_launch_template" "master-us-test-1c-masters-ha-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1c.masters.ha.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -627,6 +639,10 @@ resource "aws_launch_template" "nodes-ha-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.ha.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -221,6 +221,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.minimal.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -328,6 +332,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.minimal.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
|
|
@ -322,6 +322,10 @@
|
|||
"image_id": "ami-12345678",
|
||||
"instance_type": "m3.medium",
|
||||
"key_name": "${aws_key_pair.kubernetes-minimal-json-example-com-c4a6ed9aa889b9e2c39cd663eb9c7157.id}",
|
||||
"metadata_options": {
|
||||
"http_put_response_hop_limit": 1,
|
||||
"http_tokens": "optional"
|
||||
},
|
||||
"network_interfaces": [
|
||||
{
|
||||
"associate_public_ip_address": true,
|
||||
|
@ -393,6 +397,10 @@
|
|||
"image_id": "ami-12345678",
|
||||
"instance_type": "t2.medium",
|
||||
"key_name": "${aws_key_pair.kubernetes-minimal-json-example-com-c4a6ed9aa889b9e2c39cd663eb9c7157.id}",
|
||||
"metadata_options": {
|
||||
"http_put_response_hop_limit": 1,
|
||||
"http_tokens": "optional"
|
||||
},
|
||||
"network_interfaces": [
|
||||
{
|
||||
"associate_public_ip_address": true,
|
||||
|
|
|
@ -277,6 +277,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-minimal-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.minimal.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -337,6 +341,10 @@ resource "aws_launch_template" "nodes-minimal-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.minimal.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -392,6 +392,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.mixedinstances.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -503,6 +507,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.mixedinstances.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -614,6 +622,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.mixedinstances.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -721,6 +733,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.mixedinstances.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
|
|
@ -457,6 +457,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-mixedinstances-example
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.mixedinstances.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -521,6 +525,10 @@ resource "aws_launch_template" "master-us-test-1b-masters-mixedinstances-example
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1b.masters.mixedinstances.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -585,6 +593,10 @@ resource "aws_launch_template" "master-us-test-1c-masters-mixedinstances-example
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1c.masters.mixedinstances.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -645,6 +657,10 @@ resource "aws_launch_template" "nodes-mixedinstances-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.mixedinstances.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -393,6 +393,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.mixedinstances.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -504,6 +508,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.mixedinstances.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -615,6 +623,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.mixedinstances.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -722,6 +734,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.mixedinstances.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
|
|
@ -457,6 +457,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-mixedinstances-example
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.mixedinstances.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -521,6 +525,10 @@ resource "aws_launch_template" "master-us-test-1b-masters-mixedinstances-example
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1b.masters.mixedinstances.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -585,6 +593,10 @@ resource "aws_launch_template" "master-us-test-1c-masters-mixedinstances-example
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1c.masters.mixedinstances.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -645,6 +657,10 @@ resource "aws_launch_template" "nodes-mixedinstances-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.mixedinstances.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -261,6 +261,10 @@
|
|||
"ImageId": "ami-11400000",
|
||||
"InstanceType": "t2.micro",
|
||||
"KeyName": "kubernetes.private-shared-ip.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -372,6 +376,10 @@
|
|||
"ImageId": "ami-11400000",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.private-shared-ip.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": false,
|
||||
|
@ -479,6 +487,10 @@
|
|||
"ImageId": "ami-11400000",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.private-shared-ip.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": false,
|
||||
|
|
|
@ -406,6 +406,10 @@ resource "aws_launch_template" "bastion-private-shared-ip-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.private-shared-ip.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -469,6 +473,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-private-shared-ip-exam
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.private-shared-ip.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -529,6 +537,10 @@ resource "aws_launch_template" "nodes-private-shared-ip-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.private-shared-ip.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -401,6 +401,10 @@ resource "aws_launch_template" "bastion-private-shared-subnet-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.private-shared-subnet.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -464,6 +468,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-private-shared-subnet-
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.private-shared-subnet.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -524,6 +532,10 @@ resource "aws_launch_template" "nodes-private-shared-subnet-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.private-shared-subnet.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -323,6 +323,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.micro",
|
||||
"KeyName": "kubernetes.privatecalico.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -434,6 +438,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.privatecalico.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": false,
|
||||
|
@ -541,6 +549,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.privatecalico.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": false,
|
||||
|
|
|
@ -429,6 +429,10 @@ resource "aws_launch_template" "bastion-privatecalico-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.privatecalico.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -492,6 +496,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-privatecalico-example-
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.privatecalico.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -552,6 +560,10 @@ resource "aws_launch_template" "nodes-privatecalico-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.privatecalico.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -429,6 +429,10 @@ resource "aws_launch_template" "bastion-privatecanal-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.privatecanal.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -492,6 +496,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-privatecanal-example-c
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.privatecanal.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -552,6 +560,10 @@ resource "aws_launch_template" "nodes-privatecanal-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.privatecanal.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -323,6 +323,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.micro",
|
||||
"KeyName": "kubernetes.privatecilium.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -434,6 +438,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.privatecilium.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": false,
|
||||
|
@ -541,6 +549,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.privatecilium.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": false,
|
||||
|
|
|
@ -429,6 +429,10 @@ resource "aws_launch_template" "bastion-privatecilium-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.privatecilium.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -492,6 +496,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-privatecilium-example-
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.privatecilium.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -552,6 +560,10 @@ resource "aws_launch_template" "nodes-privatecilium-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.privatecilium.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -323,6 +323,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.micro",
|
||||
"KeyName": "kubernetes.privatecilium.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -434,6 +438,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.privatecilium.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": false,
|
||||
|
@ -541,6 +549,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.privatecilium.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": false,
|
||||
|
|
|
@ -429,6 +429,10 @@ resource "aws_launch_template" "bastion-privatecilium-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.privatecilium.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -492,6 +496,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-privatecilium-example-
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.privatecilium.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -552,6 +560,10 @@ resource "aws_launch_template" "nodes-privatecilium-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.privatecilium.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -323,6 +323,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.micro",
|
||||
"KeyName": "kubernetes.privateciliumadvanced.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": true,
|
||||
|
@ -434,6 +438,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "m3.medium",
|
||||
"KeyName": "kubernetes.privateciliumadvanced.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": false,
|
||||
|
@ -541,6 +549,10 @@
|
|||
"ImageId": "ami-12345678",
|
||||
"InstanceType": "t2.medium",
|
||||
"KeyName": "kubernetes.privateciliumadvanced.example.com-c4:a6:ed:9a:a8:89:b9:e2:c3:9c:d6:63:eb:9c:71:57",
|
||||
"MetadataOptions": {
|
||||
"HttpPutResponseHopLimit": 1,
|
||||
"HttpTokens": "optional"
|
||||
},
|
||||
"NetworkInterfaces": [
|
||||
{
|
||||
"AssociatePublicIpAddress": false,
|
||||
|
|
|
@ -443,6 +443,10 @@ resource "aws_launch_template" "bastion-privateciliumadvanced-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.privateciliumadvanced.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -506,6 +510,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-privateciliumadvanced-
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.privateciliumadvanced.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -566,6 +574,10 @@ resource "aws_launch_template" "nodes-privateciliumadvanced-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.privateciliumadvanced.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -473,6 +473,10 @@ resource "aws_launch_template" "bastion-privatedns1-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.privatedns1.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -542,6 +546,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-privatedns1-example-co
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.privatedns1.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -608,6 +616,10 @@ resource "aws_launch_template" "nodes-privatedns1-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.privatedns1.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -415,6 +415,10 @@ resource "aws_launch_template" "bastion-privatedns2-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.privatedns2.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -478,6 +482,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-privatedns2-example-co
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.privatedns2.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -538,6 +546,10 @@ resource "aws_launch_template" "nodes-privatedns2-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.privatedns2.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -429,6 +429,10 @@ resource "aws_launch_template" "bastion-privateflannel-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.privateflannel.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -492,6 +496,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-privateflannel-example
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.privateflannel.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -552,6 +560,10 @@ resource "aws_launch_template" "nodes-privateflannel-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.privateflannel.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -435,6 +435,10 @@ resource "aws_launch_template" "bastion-privatekopeio-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.privatekopeio.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -498,6 +502,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-privatekopeio-example-
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.privatekopeio.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -558,6 +566,10 @@ resource "aws_launch_template" "nodes-privatekopeio-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.privatekopeio.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -429,6 +429,10 @@ resource "aws_launch_template" "bastion-privateweave-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.privateweave.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -492,6 +496,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-privateweave-example-c
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.privateweave.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -552,6 +560,10 @@ resource "aws_launch_template" "nodes-privateweave-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.privateweave.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
|
@ -304,6 +304,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-minimal-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.minimal.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -364,6 +368,10 @@ resource "aws_launch_template" "nodes-minimal-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.minimal.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -263,6 +263,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-sharedsubnet-example-c
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.sharedsubnet.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -323,6 +327,10 @@ resource "aws_launch_template" "nodes-sharedsubnet-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.sharedsubnet.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -263,6 +263,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-sharedvpc-example-com"
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.sharedvpc.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -323,6 +327,10 @@ resource "aws_launch_template" "nodes-sharedvpc-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.sharedvpc.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
|
|
@ -406,6 +406,10 @@ resource "aws_launch_template" "bastion-unmanaged-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "bastion.unmanaged.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = true
|
||||
|
@ -469,6 +473,10 @@ resource "aws_launch_template" "master-us-test-1a-masters-unmanaged-example-com"
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "master-us-test-1a.masters.unmanaged.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
@ -529,6 +537,10 @@ resource "aws_launch_template" "nodes-unmanaged-example-com" {
|
|||
lifecycle {
|
||||
create_before_destroy = true
|
||||
}
|
||||
metadata_options {
|
||||
http_put_response_hop_limit = 1
|
||||
http_tokens = "optional"
|
||||
}
|
||||
name = "nodes.unmanaged.example.com"
|
||||
network_interfaces {
|
||||
associate_public_ip_address = false
|
||||
|
|
Loading…
Reference in New Issue