Skip to content

Commit

Permalink
Update main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
DahlPatric authored Mar 6, 2024
1 parent 37aa717 commit 56319a9
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions .github/workflows/main.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
terraform {
cloud {
organization = "VolvoCars-F5"workspaces {
name = "f5-tf-bigip-noneprod"
}
resource "bigip_fast_http_app" "app2" {
application = "myApp4"
tenant = "scenario3"
virtual_server {
ip = "10.1.10.224"
port = 80
}
required_providers {
bigip = {
source = "F5Networks/bigip"
version = "1.13.1"
}
pool_members {
addresses = ["10.1.10.120", "10.1.10.121", "10.1.10.122"]
port = 80
}
snat_pool_address = ["10.1.10.50", "10.1.10.51", "10.1.10.52"]
load_balancing_mode = "least-connections-member"
monitor {
send_string = "GET / HTTP/1.1\\r\\nHost: example.com\\r\\nConnection: Close\\r\\n\\r\\n"
response = "200 OK"
}
}

0 comments on commit 56319a9

Please sign in to comment.