RavinderReddyF5 / terraform-provider-bigip-version0.12

Terraform resources that can configure F5 BIGIP products
Mozilla Public License 2.0
0 stars 0 forks source link

[CLOSED] resource to create the profile, with http as the parent profile missing #55

Open RavinderReddyF5 opened 4 years ago

RavinderReddyF5 commented 4 years ago

Issue by vikram-chandrakanth Thursday Nov 15, 2018 at 14:45 GMT Originally opened as https://github.com/terraform-providers/terraform-provider-bigip/issues/24


resource to create the profile, with http as the parent profile missing in the resource group.

some think like

###################

resource "bigip_ltm_profile_http" {

    name = "/Common/test_http"
        defaults_from = "/Common/httpt"
        concurrent_streams_per_connection = 10
        connection_idle_timeout= 30

}

############################

RavinderReddyF5 commented 4 years ago

Comment by scshitole Thursday Nov 15, 2018 at 21:52 GMT


@vikram-chandrakanth I dont see the resource exists in https://github.com/terraform-providers/terraform-provider-bigip/blob/master/bigip/provider.go

RavinderReddyF5 commented 4 years ago

Comment by dannyk81 Friday Nov 16, 2018 at 00:42 GMT


@scshitole it doesn't, I believe @vikram-chandrakanth is asking you to add it.

RavinderReddyF5 commented 4 years ago

Comment by vikram-chandrakanth Friday Nov 16, 2018 at 10:11 GMT


@dannyk81, @scshitole, Yes I am asking to add the resource. Please excuse my typo's in earlier comment.

I am looking for resource something like

###################

resource "bigip_ltm_profile_http" { name = "/Common/test_http" defaults_from = "/Common/http" concurrent_streams_per_connection = 10 connection_idle_timeout= 30

}

############################

RavinderReddyF5 commented 4 years ago

Comment by scshitole Tuesday Mar 26, 2019 at 18:13 GMT


@vikram-chandrakanth built the resource example below

resource "bigip_ltm_profile_http" "http-sanjose" {
  name = "/Common/http-sanjose"
  defaults_from = "/Common/http"
  description = "some http"
  fallback_host = "titanic"
  fallback_status_codes = ["400","500","300"]
}