Terraform template - AWS instance
Problem this snippet solves:
Terraform template - AWS instance
Code :
resource "aws_instance" "f5" { ami = "ami-id" instance_type = "m3.xlarge" associate_public_ip_address = true private_ip = "10.0.0.21" availability_zone = "${aws_subnet.management.availability_zone}" subnet_id = "${aws_subnet.management.id}" security_groups = ["${aws_security_group.allow_all.id}"] vpc_security_group_ids = ["${aws_security_group.allow_all.id}"] #user_data = "${file("cloud-config.yaml")}" key_name = "key-name" root_block_device { delete_on_termination = true } tags { Name = "f5" License = "License" } }
Updated Apr 04, 2023
Version 3.0Marek_228998
Historic F5 Account
Joined May 05, 2019
Marek_228998
Historic F5 Account
Joined May 05, 2019
- Dario_Garrido
Noctilucent
Hello Livius.
Does the error raise on each query or just with some of them?
I'm suppecting that some specific URI structure could cause this issue.
Take into account that someone could create some crafted URI that could cause some kind of injection (intencionally or not).
Could you give us some feedback of which specific URI could cause the issue and which one not?
Regards,
Dario.