Skip to content

Commit

Permalink
Merge pull request #158 from citrix/various_fixes
Browse files Browse the repository at this point in the history
Various fixes
  • Loading branch information
George Nikolopoulos authored May 10, 2021
2 parents b86f9d5 + d115b3e commit 73670e4
Show file tree
Hide file tree
Showing 71 changed files with 493 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 1.0.0 (Unreleased)
## 1.1.0 (Unreleased)

## 1.0.0 (May 10, 2021)

FEATURES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"github.com/chiradeep/go-nitro/netscaler"
"github.com/hashicorp/terraform/helper/schema"

"fmt"
"log"
)

Expand Down
7 changes: 7 additions & 0 deletions examples/appfwfieldtype/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/appfwjsoncontenttype/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/appfwpolicy/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/appfwpolicylabel/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/appfwprofile/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/appfwprofile_cookieconsistency_binding/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/appfwprofile_crosssitescripting_binding/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/appfwprofile_denyurl_binding/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/appfwprofile_sqlinjection_binding/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/appfwprofile_starturl_binding/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/appfwxmlcontenttype/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/auditmessageaction/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/auditsyslogaction/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/auditsyslogpolicy/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
8 changes: 8 additions & 0 deletions examples/cluster/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}

provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/clusterL3/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/clusterfiles_syncer/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/content_switch_ssl_lb_mon/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080/"
}
7 changes: 7 additions & 0 deletions examples/cspolicy/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
9 changes: 8 additions & 1 deletion examples/csvserver_appfwpolicy_binding/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
}
9 changes: 8 additions & 1 deletion examples/csvserver_cspolicy_binding/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/csvserver_lbvserver_binding/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/gslb/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/gslbservice_lbmonbindings/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
Expand Down
7 changes: 7 additions & 0 deletions examples/interface/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/ipset/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/lbvserver_appfwpolicy_binding/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/linkset/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/mas_proxied_calls/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://10.78.60.207"
username = "nsroot"
Expand Down
7 changes: 7 additions & 0 deletions examples/netprofile/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/nsacl/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/nscapacity_cico/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/nscapacity_pooled/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
7 changes: 7 additions & 0 deletions examples/nscapacity_vcpu/provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
terraform {
required_providers {
citrixadc = {
source = "citrix/citrixadc"
}
}
}
provider "citrixadc" {
endpoint = "http://localhost:8080"
}
Loading

0 comments on commit 73670e4

Please sign in to comment.