We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As result the whole user_data.sh is not executed. Also one is not able to connect to instance even with key pair and ec2_user.
module "bastion" { version = "3.0.6" source = "Guimove/bastion/aws" bucket_name = "XXXXX${data.aws_region.current.name}.bastion-host" region = data.aws_region.current.name vpc_id = module.public_vpc.vpc_id is_lb_private = "false" # its default? bastion_host_key_pair = "bastion_host_key_pair" create_dns_record = "false" http_endpoint = false bastion_iam_policy_name = "bastion-host" elb_subnets = module.public_vpc.public_subnets auto_scaling_group_subnets = module.public_vpc.public_subnets }
Once we removed http_endpoint = false the user_data were executed also ec2-user could connect with keypair
http_endpoint = false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As result the whole user_data.sh is not executed.
Also one is not able to connect to instance even with key pair and ec2_user.
Once we removed
http_endpoint = false
the user_data were executed also ec2-user could connect with keypairThe text was updated successfully, but these errors were encountered: