diff --git a/config/deployer.sample.json b/config/deployer.sample.json index 55e4e4fdb..f1000ef98 100644 --- a/config/deployer.sample.json +++ b/config/deployer.sample.json @@ -4,7 +4,17 @@ "AWSAMI": "ami-003d3d03cfe1b0468", "ClusterName": "loadtest", "ClusterVpcID": "", - "ClusterSubnetID": "", + "ClusterSubnetIDs": { + "Agent": [], + "App": [], + "Database": [], + "ElasticSearch": [], + "Job": [], + "Keycloak": [], + "Metrics": [], + "Proxy": [], + "Redis": [] + }, "AppInstanceCount": 1, "AppInstanceType": "c7i.xlarge", "AgentInstanceCount": 2, @@ -18,7 +28,9 @@ "SnapshotRepository": "", "SnapshotName": "", "RestoreTimeoutMinutes": 45, - "ClusterTimeoutMinutes": 45 + "ClusterTimeoutMinutes": 45, + "ZoneAwarenessEnabled": false, + "ZoneAwarenessAZCount": 2 }, "RedisSettings": { "Enabled": false, diff --git a/config/deployer.sample.toml b/config/deployer.sample.toml index 1082138ac..3b329ac65 100644 --- a/config/deployer.sample.toml +++ b/config/deployer.sample.toml @@ -24,7 +24,6 @@ AppInstanceType = 'c5.xlarge' # Cluster configuration ClusterName = 'loadtest' -ClusterSubnetID = '' ClusterVpcID = '' # Database configuration @@ -38,12 +37,25 @@ TerraformStateDir = '/var/lib/mattermost-load-test-ng' # Proxy server configuration ProxyInstanceType = 'c5.xlarge' +[ClusterSubnetIDs] +App = [] +Job = [] +Proxy = [] +Agent = [] +ElasticSearch = [] +Metrics = [] +Keycloak = [] +Database = [] +Redis = [] + [ElasticSearchSettings] CreateRole = false InstanceCount = 0 InstanceType = 'r6g.large.search' Version = 'Elasticsearch_7.10' VpcID = '' +ZoneAwarenessEnabled = false +ZoneAwarenessAZCount = 2 [ExternalBucketSettings] AmazonS3AccessKeyId = '' diff --git a/deployment/config.go b/deployment/config.go index a6d1473cb..45427dd8c 100644 --- a/deployment/config.go +++ b/deployment/config.go @@ -4,14 +4,17 @@ package deployment import ( + "encoding/json" "errors" "fmt" + "reflect" "regexp" "strings" "github.com/mattermost/mattermost-load-test-ng/defaults" "github.com/mattermost/mattermost-load-test-ng/loadtest/report" "github.com/mattermost/mattermost-load-test-ng/logger" + "github.com/mattermost/mattermost/server/public/shared/mlog" ) var esDomainNameRe = regexp.MustCompile(`^[a-z][a-z0-9\-]{2,27}$`) @@ -29,8 +32,8 @@ type Config struct { ClusterName string `default:"loadtest" validate:"alpha"` // ClusterVpcID is the id of the VPC associated to the resources. ClusterVpcID string - // ClusterSubnetID is the id of the subnet associated to the resources. - ClusterSubnetID string + // ClusterSubnetIDs is the ids of the subnets associated to each resource type. + ClusterSubnetIDs ClusterSubnetIDs // Number of application instances. AppInstanceCount int `default:"1" validate:"range:[0,)"` // Type of the EC2 instance for app. @@ -115,6 +118,33 @@ type Config struct { StorageSizes StorageSizes } +// ClusterSubnetIDs contains the subnet ids for the different types of instances. +type ClusterSubnetIDs struct { + App []string `json:"app"` + Job []string `json:"job"` + Proxy []string `json:"proxy"` + Agent []string `json:"agent"` + ElasticSearch []string `json:"elasticsearch"` + Metrics []string `json:"metrics"` + Keycloak []string `json:"keycloak"` + Database []string `json:"database"` + Redis []string `json:"redis"` +} + +// IsAnySet returns true if any of the subnet ids are set. +func (c *ClusterSubnetIDs) IsAnySet() bool { + return !reflect.DeepEqual(c, &ClusterSubnetIDs{}) +} + +func (c *ClusterSubnetIDs) String() string { + b, err := json.Marshal(c) + if err != nil { + mlog.Error("Failed to marshal ClusterSubnetIDs", mlog.Err(err)) + return "{}" + } + return string(b) +} + type StorageSizes struct { // Size, in GiB, for the storage of the agents instances Agent int `default:"10"` @@ -251,8 +281,6 @@ type ElasticSearchSettings struct { InstanceType string // Elasticsearch version to be deployed. Version string `default:"Elasticsearch_7.10"` - // Id of the VPC associated with the instance to be created. - VpcID string // Set to true if the AWSServiceRoleForAmazonElasticsearchService role should be created. CreateRole bool // SnapshotRepository is the name of the S3 bucket where the snapshot to restore lives. @@ -263,6 +291,10 @@ type ElasticSearchSettings struct { RestoreTimeoutMinutes int `default:"45" validate:"range:[0,)"` // ClusterTimeoutMinutes is the maximum time, in minutes, that the system will wait for the cluster status to get green. ClusterTimeoutMinutes int `default:"45" validate:"range:[0,)"` + // ZoneAwarenessEnabled indicates whether to enable zone awareness or not. + ZoneAwarenessEnabled bool `default:"false"` + // ZoneAwarenessAZCount indicates the number of availability zones to use for zone awareness. + ZoneAwarenessAZCount int `default:"2" validate:"range:[1,3]"` } type RedisSettings struct { @@ -313,6 +345,10 @@ func (p DBParameters) String() string { // IsValid reports whether a given deployment config is valid or not. func (c *Config) IsValid() error { + if c.ClusterSubnetIDs.IsAnySet() && c.ClusterVpcID == "" { + return errors.New("vpc_id is required when any subnet is specified") + } + if !checkPrefix(c.MattermostDownloadURL) { return fmt.Errorf("mattermost download url is not in correct format: %q", c.MattermostDownloadURL) } @@ -352,8 +388,8 @@ func (c *Config) validateElasticSearchConfig() error { } if (c.ElasticSearchSettings != ElasticSearchSettings{}) { - if c.ElasticSearchSettings.VpcID == "" { - return errors.New("VpcID must be set in order to create an Elasticsearch instance") + if c.ClusterVpcID == "" { + return errors.New("ClusterVpcID must be set in order to create an Elasticsearch instance") } domainName := c.ClusterName + "-es" diff --git a/deployment/config_test.go b/deployment/config_test.go index 255b62d3f..6a2ca61e0 100644 --- a/deployment/config_test.go +++ b/deployment/config_test.go @@ -74,13 +74,15 @@ func TestConfigIsValid(t *testing.T) { func TestValidateElasticSearchConfig(t *testing.T) { baseValidConfig := func() Config { return Config{ + ClusterVpcID: "vpc-01234567890abcdef", ClusterName: "clustername", MattermostDownloadURL: "https://latest.mattermost.com/mattermost-enterprise-linux", LoadTestDownloadURL: "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.20.0/mattermost-load-test-ng-v1.20.0-linux-amd64.tar.gz", ElasticSearchSettings: ElasticSearchSettings{ - InstanceCount: 1, - Version: "Elasticsearch_7.10", - VpcID: "vpc-01234567890abcdef", + InstanceCount: 1, + Version: "OpenSearch_2.7", + SnapshotRepository: "somerepo", + SnapshotName: "somename", }, } } @@ -102,7 +104,7 @@ func TestValidateElasticSearchConfig(t *testing.T) { t.Run("invalid VPC ID", func(t *testing.T) { cfg := baseValidConfig() - cfg.ElasticSearchSettings.VpcID = "" + cfg.ClusterVpcID = "" require.Error(t, cfg.validateElasticSearchConfig()) }) diff --git a/deployment/terraform/assets/bindata.go b/deployment/terraform/assets/bindata.go index 1e9632dae..ec1dc5bca 100644 --- a/deployment/terraform/assets/bindata.go +++ b/deployment/terraform/assets/bindata.go @@ -1,12 +1,12 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // .terraform.lock.hcl (4.546kB) -// cluster.tf (20.394kB) +// cluster.tf (22.423kB) // coordinator_dashboard_tmpl.json (3.475kB) // dashboard.yaml (231B) // dashboard_data.json (61.876kB) // datasource.yaml (296B) -// elasticsearch.tf (3.829kB) +// elasticsearch.tf (4.03kB) // es_dashboard_data.json (8.51kB) // keycloak-database.sql (141B) // mattermost-realm.json (115.117kB) @@ -19,7 +19,7 @@ // provisioners/proxy.sh (1.597kB) // redis_dashboard_data.json (31.526kB) // saml-idp.crt (963B) -// variables.tf (2.365kB) +// variables.tf (2.718kB) package assets @@ -108,7 +108,7 @@ func TerraformLockHcl() (*asset, error) { return a, nil } -var _clusterTf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\xfb\x73\xdb\x36\xf2\xff\x5d\x7f\xc5\x7e\x99\x4c\x27\xf9\x9e\xf5\x70\xe4\x34\x89\xa6\x6a\xc6\xed\xf5\xee\x3a\x7d\x65\xfa\xb8\x9b\x1b\xd7\xc3\x81\xc8\x95\x84\x98\x24\x50\x00\xb4\xa3\x7a\x74\x7f\xfb\x0d\x5e\x24\x25\x92\x12\x2d\x3b\x76\xd2\x9e\x3b\x75\x64\xec\x02\x58\xec\x7e\x76\xb1\x0b\x90\x52\x28\x04\x99\x33\x91\xc2\x75\x0f\x40\xe0\x6f\x39\x15\x18\x87\x5c\xb0\x4b\x1a\xa3\x90\xa6\x19\x80\x5c\x49\x98\xba\xcf\x00\x92\xe5\x22\x42\x80\x29\x04\x4b\x22\x97\x34\x62\x82\x0f\xc9\x95\x0c\x1c\xfd\x12\x85\xa4\x2c\xd3\xf4\xff\x7c\x0e\xcf\x07\xe3\x57\x96\xb2\xee\xe9\xff\xd7\xbd\x9e\x1f\x1e\x02\xdd\xcb\x4d\xbd\xd0\x5d\x60\x0a\x97\x44\x0c\xc8\x95\x0c\x6d\x4b\x0f\x80\x0b\x36\xa7\x09\x56\x48\xae\x45\x0f\x15\x13\x45\xcc\x30\x8e\x3f\x80\x20\xca\x85\xc0\x4c\x05\x70\xbd\x41\x8f\x48\x92\xa0\x08\x69\x8c\x99\xa2\x6a\xd5\xcc\xb8\x54\x8a\x07\x10\xa4\xab\x90\xe7\xb3\x84\x46\x21\xe5\x56\xbe\x5c\x24\x66\xbd\x4a\x71\x39\x19\x0e\xa3\x25\x46\x17\x94\x0f\x48\x4a\x7e\x67\x19\xb9\x92\x83\x88\xa5\x41\x29\x10\xbe\x53\x28\x32\x92\x04\x10\x70\x41\x2f\x89\xc2\x62\x24\x2e\xd8\x42\x90\x14\xa6\x70\x16\xc8\x65\x70\x04\x41\x3f\xd2\xbf\x31\x5a\x32\xb8\xfe\xf5\xd7\x5f\x03\xca\xf5\xef\x89\xfe\xf5\xf8\xc9\x92\x49\x95\x91\x14\xa1\x4f\x9f\xea\x96\x75\x70\xae\xa7\x49\x58\x44\x12\x6b\x9e\x42\x52\xad\xbd\x68\xc9\x52\xfe\x44\x0b\x31\xd0\xb2\x0e\xaa\x2b\x19\x08\x94\x9c\x65\x12\xc3\x19\x8b\x57\x4f\x8d\x2c\x5e\x36\x98\x82\xe9\xe4\x05\x1f\x94\x24\xdd\x2d\x4f\xd4\x80\xf2\x4d\x85\xcb\x7c\x96\xa1\x92\x01\x04\x12\x13\x8c\x14\xc6\x76\x81\x73\x9a\x28\x14\x0e\x2d\x46\x74\x03\x95\x4b\x1e\xf5\x69\x6c\x91\x70\x49\x92\x1c\x35\xa4\xce\xb4\x49\xa3\x24\x97\x0a\x45\x78\xc9\xa3\x90\xc6\xe7\x1e\x25\x02\x1d\xd0\xcc\x6c\x17\xb8\x0a\x39\xa1\x22\x80\xe0\x02\x57\x76\x26\xdd\x56\x4e\xf0\xf8\xba\x3a\x98\x6e\x5f\xf7\x2f\x70\x65\x3a\x95\x6a\xba\xc0\x15\x4c\xb5\x8c\xf8\x44\xb3\x4b\xb9\x0c\x4b\xca\xd3\xfa\xbc\x34\x93\x8a\x64\x11\x06\x10\x10\xce\x43\x89\xe2\x12\x85\x9d\x5e\x91\x45\xe9\x16\xdf\x6b\x39\x5a\xa4\x20\x9c\xf7\x1f\x5f\x47\x2c\xcf\xd4\x80\x66\x31\xbe\x5b\x07\x66\x91\x3d\x80\x88\x65\x19\x46\x4a\x63\xdf\x8e\xf3\x08\x7e\x5e\x22\xc4\x38\x27\x79\xa2\x20\x97\xda\x1a\x29\xc2\x9c\x09\x60\xb9\x80\xd3\xef\xbe\x36\x6c\x6a\xc5\xcd\x74\x52\x2e\xad\x4a\x35\xa7\x6e\xc8\x67\x79\xa6\xf2\xc0\x8d\xf5\xc5\x8f\xa7\xdf\x7f\xf9\x8f\x09\xfc\x22\xd1\x1b\x1b\xbe\x7e\x03\x4f\x72\x49\xb3\x45\xd1\x62\x2d\xf9\xd4\xf4\xd1\x78\x83\x29\x48\x4c\xe6\x15\x0c\x78\x71\x49\x4a\xa1\xfc\x29\x3d\x92\xa4\xb4\x07\xe0\x75\x15\x3a\xe9\x0c\x95\xf3\x70\xa3\x7d\xd3\x6e\x66\x94\xaa\x7d\x07\x17\xb8\x1a\xd0\xd8\xa8\x26\xcf\xd4\xf6\x5c\xd5\xd1\x0c\x43\x0f\x9c\xf8\x21\x8d\x2b\x8c\xde\x00\x25\xed\xff\xa6\x10\x04\xf0\xba\x85\x3a\x01\x4c\x30\xc5\x4c\x3d\x51\x2c\xa1\x52\x59\x17\xaa\xc0\x7c\xe0\x41\x3e\xa0\xb1\x7c\x7a\x04\x23\xad\x2e\x8d\x58\x89\x51\x2e\xa8\x5a\x85\x0b\xc1\x72\x1e\xd2\xd8\xe0\xda\x87\xcd\x2d\xb2\x5e\xc0\xd9\xe8\x7c\x40\xe3\xa3\x1d\x1c\xe1\x82\x49\x49\x1d\x63\x0f\x40\xbb\x04\x25\x69\xb9\xf2\x32\x24\x06\x09\x23\xb1\x42\xa9\xc2\x34\xf5\xcd\x81\xb6\x94\x60\x4c\x85\xb3\x84\x45\x17\x61\x8c\x97\x34\x42\x87\xaf\x4b\x96\xe4\x29\x86\x92\xfe\xee\x2d\x54\x65\x32\xed\x32\x24\x9c\x57\x99\x2b\xe6\xdc\x60\x76\xe6\x34\xc8\x30\x31\x5d\x87\x7d\x1d\xd6\x8d\x14\x6e\x42\xbf\x5b\x94\xb6\x49\x89\x52\x28\x52\x26\x55\x98\xd0\x08\x75\x40\x32\xe1\x5c\x73\xc4\x28\x15\xcd\x88\x72\xfb\xc7\x70\xc9\x52\x1c\x5a\x4c\x0f\xcb\x7e\x95\x21\xfa\x6e\x88\xa0\x51\x10\x81\x29\x53\xd8\xc7\x77\x18\x15\xf2\x44\x82\x72\x0d\xf1\xa0\xc2\x29\x87\x84\xf3\x81\xf5\xa5\x86\xe0\x53\x09\x02\x29\x2a\x41\x23\x79\x58\x20\x70\x9d\xff\x1c\xde\x1f\xa8\xf1\xe0\x5d\x42\xc4\xc2\xd8\xa6\x9b\x37\xc3\xe7\x30\x82\xd7\x70\x0c\x13\x18\x75\x0e\x14\x0f\xe5\xff\x07\x05\x00\x07\x81\x32\x08\x9c\xdf\xda\x5b\xdd\x90\xb7\xf2\xd8\xee\x8e\xe2\x66\xeb\xe4\x2c\x5c\xb0\x77\xab\xc3\x5c\xc5\x74\xb5\x33\x6c\x03\x6f\xf3\x67\x37\x0c\x9b\x78\xad\x54\xdb\x9b\xd2\x26\x40\x3b\xf4\xf3\xdb\xcf\x23\x20\x52\xb2\x88\x6a\x5f\x29\x72\xad\x90\xc4\xb1\x40\xa9\xd7\xaa\x44\x8e\x35\x94\x36\x8d\xff\xc1\x62\xd6\x2c\x7c\x63\x37\x2a\x1c\xb3\xd9\x27\x6f\x8b\x68\x33\xe1\x4d\xf1\xfc\x91\x05\xd3\x03\xdd\xcf\xa8\x66\x87\xf3\x91\x34\xd4\xf2\xeb\xac\x7c\x6c\x3f\xe8\xe1\x6c\x10\x6d\x71\x35\xc7\xd8\xab\xae\xd2\x7a\xc3\x8e\x30\x7d\x0c\x9f\x7c\x62\xa8\x72\x1c\xfa\xa2\x21\x9c\xe5\xd1\x05\x2a\x87\x0c\x87\x5d\x1f\xcb\xfd\x88\xa3\x66\xa1\x49\x14\xa1\x34\x48\x32\xa2\x17\x39\xbe\x31\x86\x83\x99\x5f\xdc\xc0\x4a\xac\x11\xa9\xa7\x7a\x38\xc1\xe5\xd8\xf5\x34\x32\xfb\x8f\x5a\x6c\xfb\xb9\x45\xe3\x83\x82\xb7\x41\xf4\xf7\x24\xfb\x0d\x42\x6f\x55\x3a\x03\xd5\x39\x13\x11\x86\x3a\x35\x13\x6c\xe5\x23\x5a\x2b\xf4\x42\xce\x12\x1a\xad\x0a\x04\xfa\x3f\x3b\xe2\xd0\xb1\x7f\x60\xa6\xd7\x0e\x6b\x04\x83\x29\x7c\xf6\xd9\x57\x3f\xfc\xad\xa7\x97\x13\xfc\xd3\x1e\x75\x04\x13\x08\x9e\x8d\x8e\x9f\xf5\x8f\x47\xfd\xe3\x17\x81\xde\xd6\x83\x9f\x14\x51\x26\x3a\x07\x13\x17\x59\xa1\x38\x41\xd1\x3f\xc1\x57\xf3\x39\x46\x9a\x1a\x9c\x26\x09\xbb\x0a\x8e\xaa\xc4\x53\x13\xc8\x2a\x5d\x0b\x8a\x1c\x4f\xbe\xa5\x52\x7d\x61\x4d\x74\xb4\x93\xfc\x5d\x9e\x28\xfa\x86\x08\xf5\x0b\xd7\x75\x82\x6c\x64\xff\x2b\x26\xa8\x70\xc7\x78\x7f\x47\x37\xdc\xb7\x2c\x32\x99\x79\x50\x61\x3a\xdf\x10\xfb\x47\x87\x08\xbd\x2a\x22\xb2\x09\xb9\x92\x13\x39\x9e\x4c\x26\x8f\xaf\x37\xfc\xa5\xf0\x00\xbb\xab\xac\xfd\x88\xeb\xa3\x26\x4d\xed\x54\xc6\xe9\x8c\x09\xbb\x50\x5e\x2c\xb4\x55\x2d\x5b\x7c\x5a\x35\xbb\x94\xf2\xc3\xec\xad\x36\x51\x8b\x52\xba\x50\x4f\xa3\xa4\x91\xe1\x4d\xbe\xab\x7b\x41\xd5\xdd\x5b\x95\xbd\x13\x40\x87\x5a\x62\xf8\xff\x85\x2d\xcc\x5e\xbf\xee\x69\xb0\xd7\x9c\x1d\x13\x22\x15\x8d\x48\xb4\xc4\xd0\x79\x71\xa0\xb7\xb1\x98\x6e\x96\x46\xde\xc3\x37\xd2\x9e\x16\xff\x37\xbd\xf5\xec\x98\x2d\x68\x56\xcf\xdd\x82\x82\x21\x63\x71\x3d\xbf\x2b\x46\xb5\x52\x14\x3c\xeb\x7a\xf9\x51\xf4\x28\xd9\x31\x23\xb3\x04\xe3\x8a\xf3\x67\x79\x1a\xda\x05\xea\xa1\xa4\xef\x72\xac\x43\x01\x11\x24\x45\x2d\xb9\xcd\x9f\xb2\x8d\x68\x6a\x07\x34\x3c\x15\xfa\xba\x5c\x59\xe8\x4f\x48\x1b\x05\xdf\xe4\x31\xdd\x38\x13\xf5\xd4\x74\x0a\x9f\x8e\x5f\xbc\xd2\x91\xa9\x39\x9b\x6b\x48\xe4\xcc\x04\xd6\xd0\xe7\x75\x9b\x8a\x58\x56\x6c\x19\xcf\xca\x3f\xae\x5b\x34\xb8\xb3\x8c\x73\xb1\x36\x9e\xed\x26\x96\x08\xc1\x4c\xd1\x39\xd5\xb9\xd7\x76\x18\xae\xb3\xb8\xa9\x9b\xfb\xfb\xb4\x39\x08\x60\xd2\x0c\xb5\x78\xa6\xd5\xaa\xf3\xe5\x19\x91\x58\xa9\x31\x5b\xb0\x69\xf9\x53\x62\x5a\x8a\x4c\xb2\x54\x41\x3c\x2b\x5a\x4b\x3e\x4e\xa4\xbc\x62\x22\xde\xe4\xf3\xad\xda\x6e\x17\x94\x87\x73\xaa\x77\x21\x99\x11\x2e\x97\x4c\x95\xf5\x02\xe1\x3c\x59\x85\x34\x4d\x31\xd6\xa5\x45\xb2\x32\x83\x38\x62\x93\x87\x4c\x6b\xea\xb6\x5c\x2d\xb0\x2b\xd8\xb7\x88\xd5\x9a\xa3\x4e\x9d\xf8\x76\x97\x56\x6f\xd1\xcf\x9a\x45\x38\xdf\x5d\x77\x34\x20\x35\x9e\x75\x81\x69\xb5\xd6\xdc\x6e\x92\xed\xb0\xed\x86\xdf\xd7\x2d\xf0\xb5\x98\xac\x62\xb1\x61\xdc\x16\xd4\x35\x1c\x03\x37\x81\xbb\x6e\xd3\x1d\x28\x6f\xe7\x98\xc0\x96\xbe\x2a\x7c\x45\x39\x57\xae\x2e\x21\x52\x36\x2a\x68\x43\x07\x9a\xab\x2d\x46\x77\x80\x62\x13\xac\x2b\xfd\x3c\xf8\x73\xc5\xc2\x94\x66\x4c\x78\x64\x85\x39\x5f\x08\x12\xdb\xb3\xfe\x39\x49\xa4\x66\xe3\x28\xe6\x4c\xa4\x66\x06\x9a\x49\xba\x58\xaa\x32\x92\x57\x00\xae\x1b\xc2\x26\x66\x1d\x04\x66\x61\x63\x38\x77\x02\x25\x98\x2d\xd4\xf2\x49\xe1\xbc\x8e\x53\x3e\x75\x18\x69\x33\x34\x5f\x98\xe0\x13\xd4\xf1\x5b\x9f\xd0\x46\x5b\xd3\x28\x7d\x4b\x99\x2d\xef\x40\x13\x5f\x68\x04\xcd\x49\x4a\x93\x55\xab\xd2\x4d\x38\x25\xb9\x60\x82\xf4\xd3\x95\xfc\x2d\x31\xa1\xb1\xda\xf0\x72\x30\x32\xc2\xba\x36\xce\xa4\x5a\x08\x94\xbf\x25\xc7\x27\x26\x4c\xae\x32\x92\xd2\x08\x82\x42\x6c\x5f\xa3\xce\x99\x08\x91\x44\xcb\x6a\x74\xf3\x0a\x32\x0c\x11\xcb\x14\x66\xaa\x48\xe7\x2a\x81\x56\xaf\xab\xe0\x1e\x98\x1b\xa1\xb3\x40\xd3\x83\x73\x7f\x8f\xa8\xdb\x76\x30\x9b\x7f\x0a\x6e\x0b\xac\x14\xd5\x92\xc5\x4d\xdc\x55\xba\xeb\xb4\x6e\xae\xa1\xab\x01\x06\xb3\x98\x33\x9a\xa9\x4a\x80\xf1\x4d\x1d\x02\x4c\x83\xfb\x74\x0c\x2f\xbb\xa2\xc2\x3d\x04\x85\xed\xb5\x6e\xec\xce\xdb\x03\x14\x2b\x18\xd4\x62\xf0\x59\x25\xda\x9d\x0f\xae\x04\x55\x28\xda\x9c\xe6\x4a\xb4\x6e\xd7\x22\x6e\x88\x9b\xb9\x54\x2c\x2d\x25\xac\xa6\x83\x53\x08\x4e\xbf\xff\xb7\xb9\x07\x91\x8a\x28\x1a\x85\x29\xa6\x33\x14\xc5\x6e\x73\x88\xf4\x8d\x9b\x51\x65\x03\x2a\x6e\x62\xc8\xc2\xde\x2a\xdf\xe8\x8a\x50\xf7\xe9\x7c\x49\xf8\x41\x9c\xff\x37\x41\xfd\x26\xc7\xb0\x66\xc9\x7b\xee\x06\xb7\xfb\x75\xb9\x29\xec\x30\x57\xf3\xcd\x61\x53\xc7\x7b\x3a\x93\xed\x74\x86\x7c\xd3\x1c\xca\x2c\xda\xc0\xf6\xd6\xf7\x81\x7a\xa4\x7b\xba\x5f\xb0\x52\xb7\x1e\x70\x6e\xae\xd1\xde\xca\xd7\x03\x71\xc7\xfb\xa5\x2a\xd0\x76\xdc\xdd\xfb\x39\xfb\x76\xce\x9e\xb9\xa6\x34\xd2\xbb\x6b\xca\x53\xce\x8b\x22\x0c\x0c\x93\x39\x65\xf6\x11\xc1\x87\x53\x68\x98\x20\x70\x56\xf5\x18\xdc\x84\x9d\xa5\xf4\x8c\x3f\x2d\x0c\x16\xdc\xc6\x2b\x58\x1a\xba\xaa\x70\x0a\xcf\x9e\xd9\xa8\xc0\xc2\xa2\x50\x2c\x1a\xb9\x60\x8a\x45\x2c\x71\x4b\x54\x11\xb7\xd1\x21\xa2\xb1\xb0\x78\xd0\xf0\x31\x8f\x93\x54\x3c\xbe\x40\xf9\x59\xf0\xf8\xda\x11\x3d\x2c\xd7\xc3\xf1\xb3\xe0\x08\x4a\x42\xd1\xcb\x50\xce\x61\xd2\xda\xeb\xdc\xdd\xe7\xec\x5a\xcc\xcb\xd1\xa7\xcf\x1b\x96\x53\x34\x77\x5b\xd0\x59\x30\x1a\x98\xff\x86\xa3\xbd\xb3\x9a\xc1\x5f\x6c\xcd\x59\x69\x2c\x67\xac\xce\xf7\x08\xbe\x23\xab\x19\x82\x40\xa9\x04\x8d\x14\xb0\x2c\x59\x99\x51\xe1\x8d\x60\x3a\xcf\xc0\x5c\x82\x3d\x0b\x81\xd7\x3e\x22\xe7\x0a\x96\x24\x8b\x57\x70\xb5\xa4\x09\x82\x22\x17\x36\x14\x9b\x8b\x7b\x09\x57\x54\x2d\x59\xae\x20\x25\x59\x4e\x92\x64\x05\x52\x2e\xfb\x9a\x83\x66\x8a\x81\x5a\xa2\x1b\x70\x70\xcb\x25\x7b\xac\xbd\x3a\x1e\x8d\x6a\xca\xde\x22\x55\x15\xbe\xad\xf4\x4d\x6f\x6c\x0b\x44\x1b\x77\x9e\x5e\x34\x6c\x87\x40\x5d\x24\xdf\xb6\x65\xfc\xfe\x71\x37\xdb\x77\x8a\x22\xee\xa9\x8b\xfb\x0d\x26\x7d\x37\x69\xe7\x98\x62\xf9\xef\x29\xb4\x78\xd7\x7b\x71\xd2\x02\x92\x82\xd4\x00\x92\x3c\xbe\x11\x48\x8a\x27\x63\xba\x62\xf7\x40\xb1\x6e\x88\xdd\x43\xc4\xaa\xc7\xaf\x2d\xd2\xc3\x68\xeb\x10\xb1\x6e\xab\xad\x7b\xf6\xf2\x7d\x6e\x1e\xcf\xaa\xee\x7d\x23\xc7\x6e\xaf\xc2\xeb\xe9\xc1\x5d\x78\xdd\x78\x3c\xfa\xb4\xc5\x60\x05\xe9\xce\x0d\xd6\x41\xae\xe7\x27\xe3\x7a\xba\xb1\x45\xba\x73\xb9\x3a\x04\xf0\xb2\xe8\xea\x12\x88\x4d\xb9\xb5\x37\xaf\xfb\xd6\x47\x59\xc3\xff\x5e\x53\xbc\x3d\x2b\x0c\x45\x9e\xa0\x5f\x66\x5f\xd7\x7d\xb6\xbe\xac\x15\x57\x53\x08\x9c\x05\xcd\xd1\xd0\x96\xf9\x8a\xc4\x70\xdb\x78\x05\x61\xdb\x74\x55\xe3\x55\x1d\xd0\xd3\xee\x31\x73\xac\x15\x3e\xae\x20\x6c\x29\x7b\x6e\xa6\x52\xc2\xe9\xe1\x2a\x3d\x19\x99\x5c\xa9\x49\xa9\x8e\x74\x53\xb5\x6e\x47\xb7\xf7\xba\x76\x1b\xa4\x77\x2c\x1f\x77\xae\xbe\x6d\xe9\xad\xeb\xb6\x01\xfd\xc1\x97\xed\xd2\xd2\xbe\x62\x7d\x5e\x64\xec\x7b\x0e\xf5\x3a\x6e\x19\x0d\x87\x1e\xdd\xb0\xb4\x1f\x52\xfb\x91\x55\x03\x58\x5d\x8b\x05\xcb\x2e\x65\xfa\x67\x77\xeb\x27\x0e\xcd\x1d\x37\xd2\xfc\x9b\x99\x22\x63\x31\xf6\xf1\x9d\x5e\xea\xae\xfb\xc6\xfb\x35\x81\xab\x80\x76\x98\xc0\x71\x7c\xa4\x26\x28\x9f\x66\xbe\xeb\xa4\xc8\x7b\xd6\x01\x99\x51\x47\xd8\x14\x33\xf8\x9d\xb0\x0e\x97\x83\x71\xf2\xbf\x2d\xf4\x20\x4f\xf6\x26\xd9\x1f\x4b\xdf\xa3\x65\x5e\x8d\x5e\xb5\x6d\x47\x8e\x74\x4f\x3b\xf1\xad\x54\xb8\x10\x64\x4e\x32\xf2\x00\xfa\x1b\xb7\x67\x32\xe3\x7b\xcd\x64\x6e\x07\xc1\x95\x60\x32\x62\x1c\x1f\x40\x83\x27\xa3\x93\xf6\x5c\xf0\xe4\x63\xd1\x60\x35\x25\xbc\x5b\xf5\x7d\xe8\xb9\xe4\x4d\xb7\x50\xfb\x50\x5a\xd7\xc2\xd3\x70\xef\x2f\x3c\x7f\xaa\x57\x9a\xa6\x67\x71\xad\x76\x57\xa7\x0c\xe6\x11\x32\x68\xac\xe6\x0b\xd2\x1d\x56\xf3\x47\x7b\x35\x7e\x5e\x5e\x7a\xda\x6c\xe4\xb8\x83\x0d\xdc\xd3\x88\x9d\xad\xe0\xf8\x0f\xb2\x83\xeb\x7b\xe7\x96\x38\x39\x19\xb7\x18\xc2\x53\x1e\xd6\x0e\x7a\x55\x28\x77\x39\xfc\xba\xd7\x7b\x04\xff\x42\xc8\x10\x63\x20\x20\x91\x13\x61\x2e\x98\x37\x95\xa8\x23\x0d\x28\x06\x5c\xe0\x25\x66\x0a\xa2\x55\x94\xd0\x08\x62\xe4\x98\xc5\x98\x45\x2b\x98\xa1\xba\x42\xcc\x7a\x8f\xcc\x8d\x07\xe1\xdc\xf5\x24\x59\x0c\x4e\x48\xdb\x32\xe8\x56\x62\x70\xae\x6b\x3c\x9a\x55\x1f\xd0\x7f\xf8\xf2\xe2\xd9\xf3\x7d\xe5\x85\xe3\xb8\xf3\xf2\x62\x33\xc4\xdd\xb4\xc6\x28\x40\xd4\xc1\x31\xed\x5b\x5c\x2d\x37\x2a\x2d\xef\x53\x75\xf0\x5f\xd3\x73\xbf\xf7\xbe\xd1\x6c\x0f\x79\x31\xfb\xb2\xe9\x8c\xfb\x65\xe3\x21\x77\xe7\x7b\xcc\x3f\xd6\x5d\xf0\x87\x7c\x47\xf9\xd0\x97\x94\x95\x67\x8b\xde\xb2\xd9\x61\xaf\x51\xbe\x65\xb3\xbe\xed\xf8\xa7\xfd\x06\x82\x52\x77\x77\xf8\x45\x04\x4d\x83\x7e\xf4\xdf\x47\x70\xfb\x07\x85\xde\xb2\xd9\xad\x1e\x13\xfa\x08\xbf\x38\xe0\x2d\x9b\x35\x3f\xad\x94\xe5\x49\x12\xfa\x3f\xcd\xdb\x70\x61\x9c\xa7\x7c\xf3\xac\xed\x49\xa7\x97\xd5\xdc\x3b\x6a\xba\x7b\x98\x0b\xea\xb0\xd3\xe5\x65\xb6\xa7\x45\xca\xb2\xbd\x42\x13\x93\x37\x16\x18\xb1\x34\xd5\x29\xd6\xd4\x84\x1f\xe8\xf7\xfd\xd7\x4c\xd8\xc0\x52\xf9\xe6\x9d\x35\xc8\x31\x44\xdc\x11\xea\x02\x6a\xfa\x64\x38\xdc\xf3\xaa\x11\xf4\xfb\x42\xa3\x51\xd2\x4b\x2c\xf4\x37\x1c\xc2\x37\xb8\x8a\x12\x46\x2e\xda\xc3\xe1\x85\xe3\xb8\x61\x30\x2c\xba\xdd\x4b\xec\x6b\x8a\x63\x71\x26\x0f\x0f\x64\x5e\xfc\x3d\xaf\xae\x6f\x31\xd7\x5f\x6c\xfa\xc0\xbf\x55\xe1\xa0\x38\xe6\x97\x7b\x97\xc1\xcc\x8f\xf9\x9e\x22\xda\x66\x18\xf1\x93\x0d\x3c\xa4\xb6\x03\x9a\x4a\xf9\xb0\xd2\xa3\x88\x39\x1d\x22\x17\xcd\x12\xf3\x1e\x40\xf1\xfe\x64\x10\x2d\x53\x16\xc3\x5f\xde\x41\xd3\xb0\xfe\x3d\xc2\xa6\x39\x9d\xcb\x17\xe8\x2a\xde\x52\xb3\x9d\xba\xde\xd6\x6f\x3a\x70\xbd\x34\xd8\x81\xde\x0e\xe5\x81\xef\xbd\xbf\x42\xf8\x06\x57\x5f\x6a\xce\xf7\x5d\x24\xdc\x67\x1e\xf9\x87\x2b\x10\x86\x43\xf8\x99\x81\xfd\x82\x00\xa8\x38\xe5\xce\xca\xab\xe9\x38\xa5\xd2\xfc\x9e\xaa\xaf\x97\xa3\x96\x92\xef\x96\x45\xdf\xba\xf7\xdf\x00\x00\x00\xff\xff\x07\x74\xb4\x86\xaa\x4f\x00\x00") +var _clusterTf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x7b\x6f\x1b\xb7\xb2\xff\x5f\x9f\x82\xdd\x04\x85\x7d\xaf\xf5\x70\xe4\x34\x89\x50\x37\x70\x7b\x7b\xef\x2d\xfa\x0a\xfa\xb8\x17\x07\xae\xb1\xa0\x76\x47\x12\xe3\xdd\x25\x4b\x72\xed\x28\x86\xce\x67\x3f\xe0\x6b\xdf\xbb\x5a\x49\x8e\x9d\x04\x27\x07\xc7\xb5\xc9\x19\x72\x38\x9c\xf9\x71\x86\x8f\x95\xc0\x39\x5e\x50\x1e\xa3\xbb\x01\x42\x1c\xfe\x4e\x09\x87\xd0\x67\x9c\xde\x90\x10\xb8\xd0\xc5\x08\xe1\x5b\x81\xce\xed\xef\x08\x09\x9a\xf2\x00\x10\x3a\x47\xde\x0a\x8b\x15\x09\x28\x67\x63\x7c\x2b\x3c\x5b\x7f\x03\x5c\x10\x9a\xa8\xfa\x7f\x7e\x83\x9e\x8f\xa6\xaf\x4c\xcd\x66\xa0\xfe\xbf\x19\x0c\x5c\xf3\xc8\x53\x5c\xb6\xeb\xa5\x62\x41\xe7\xe8\x06\xf3\x11\xbe\x15\xbe\x29\x19\x20\xc4\x38\x5d\x90\x08\x0a\x55\xb6\x44\x35\x15\x62\x89\x75\x33\x96\xde\x43\x5e\x90\x72\x0e\x89\xf4\xd0\x5d\xa9\x3e\xc0\x51\x04\xdc\x27\x21\x24\x92\xc8\x75\x33\xe1\x4a\x4a\xe6\x21\x2f\x5e\xfb\x2c\x9d\x47\x24\xf0\x09\x33\xf2\xa5\x3c\xd2\xe3\x95\x92\x89\xd9\x78\x1c\xac\x20\xb8\x26\x6c\x84\x63\xfc\x9e\x26\xf8\x56\x8c\x02\x1a\x7b\xb9\x40\xf0\x4e\x02\x4f\x70\xe4\x21\x8f\x71\x72\x83\x25\x64\x2d\x31\x4e\x97\x1c\xc7\xe8\x1c\x5d\x7a\x62\xe5\x9d\x20\x6f\x18\xa8\x9f\x10\xac\x28\xba\xfb\xeb\xaf\xbf\x3c\xc2\xd4\xcf\x99\xfa\xf1\xf4\x68\x45\x85\x4c\x70\x0c\x68\x48\x8e\x55\xc9\xc6\xbb\x52\xdd\x44\x34\xc0\x91\x99\x9e\x4c\x52\xa5\xbd\x60\x45\x63\x76\xa4\x84\x18\x29\x59\x47\xc5\x91\x8c\x38\x08\x46\x13\x01\xfe\x9c\x86\xeb\x63\x2d\x8b\x93\x0d\x9d\x23\xcd\xe4\x04\x1f\xe5\x55\x8a\x2d\x8d\xe4\x88\xb0\xb2\xc2\x45\x3a\x4f\x40\x0a\x0f\x79\x02\x22\x08\x24\x84\x66\x80\x0b\x12\x49\xe0\xd6\x5a\xb4\xe8\xda\x54\x6e\x58\x30\x24\xa1\xb1\x84\x1b\x1c\xa5\xa0\x4c\xea\x52\x4d\x69\x10\xa5\x42\x02\xf7\x6f\x58\xe0\x93\xf0\x4a\x5b\x49\x7b\x3b\xf8\x06\x93\x08\xcf\x49\x44\xe4\x7a\xf8\x9e\x26\xd0\xd4\xa4\x92\x0f\xbf\xbf\x72\x06\xc7\xc1\xda\xac\x16\xfc\x1a\xd6\x3e\xc3\x84\x7b\xc8\xbb\x86\xb5\x11\x5a\x95\xe5\x7d\x3c\xbd\x2b\xca\xa5\xca\x37\xc3\x6b\x58\x6b\xa6\x5c\xe3\xd7\xb0\x46\xe7\x4a\x4c\x38\x52\xe4\x42\xac\xfc\xbc\xe6\xb8\xde\x2f\x49\x84\xc4\x49\x00\x1e\xf2\x30\x63\xbe\x00\x7e\x03\xdc\x74\x2f\xf1\x32\xf7\xb0\x5f\x94\x1c\x2d\x52\x60\xc6\x86\x4f\xef\x02\x9a\x26\x72\x44\x92\x10\xde\x6d\x3c\xa7\xaf\x80\x26\x09\x04\x52\xb9\x91\x69\xe7\x09\xfa\x63\x05\x28\x84\x05\x4e\x23\x89\x52\xa1\x26\x36\x06\xb4\xa0\x1c\xd1\x94\xa3\x8b\x9f\x7f\xd0\x64\x72\xcd\x74\x77\x42\xac\x8c\x2a\x15\xa5\x2a\x48\xe7\x69\x22\x53\xcf\xb6\xf5\xed\x6f\x17\xbf\x7c\xf7\xbf\x33\xf4\xa7\x00\x67\x37\xe8\x87\x37\xe8\x28\x15\x24\x59\x66\x25\xc6\x28\x8e\x35\x8f\x32\x5d\x74\x8e\x04\x44\x8b\x82\x39\x39\x71\x71\x4c\x50\xed\x5f\xee\xe3\x38\x26\x03\x84\x9c\xca\x7c\x2d\x64\x99\x88\x31\xbf\x54\x5d\x9e\xc5\x62\x9b\xc5\x49\x1f\x5d\xc3\x7a\x44\x42\xad\xaf\x34\x91\x2d\x02\x14\xdb\xd6\x74\x4a\xe0\x82\xe1\xf9\xca\xf0\x2a\x02\xbf\x57\xf2\xe2\x38\x67\xac\x00\x17\x63\x3e\x96\x12\x07\x2b\x5f\x51\x39\x0c\x43\x56\x65\x3e\x09\xcb\x72\x1c\x15\x27\x3f\xa3\x11\xaa\x1d\xf4\xc5\x39\xf2\xbc\x63\xf4\x1a\x41\x04\x31\x24\xf2\x48\xd2\x88\x08\xd9\xc1\x72\x7c\x82\x0a\x46\x73\x8c\x66\x55\x56\xed\xfd\x05\xb7\x1e\x39\xa7\x1e\x91\x50\x1c\x9f\xa0\xc9\xb1\x9a\x34\xe5\xa2\x02\x82\x94\x2b\x1d\x2c\x39\x4d\x99\xea\x40\x79\x9d\x5b\x27\x2a\xd5\xaa\xef\xcb\xc9\xd5\x88\x84\x27\x1d\x14\xfe\x92\x0a\x41\x2c\xe1\x00\xa1\xab\x76\x55\x7a\x11\xc5\xa1\x04\x21\xfd\x38\x53\xa2\xa7\x44\xe3\x94\x4a\x7f\x1e\xd1\xe0\xda\x0f\xe1\x86\x04\x60\xbd\xe0\x86\x46\x69\x0c\xbe\x20\xef\xdd\x4c\x14\x89\x74\xb9\xf0\x31\x63\x45\x62\xeb\x12\x35\x62\x6b\x66\xda\x7e\xf5\x22\xa6\xd6\x39\xb5\x8e\x69\x29\x6c\x87\x6e\x79\xcc\xcd\x23\xc6\x52\x02\x8f\xa9\x90\x7e\x44\x02\x50\x08\x6c\xe7\x1e\xa1\x10\x84\x24\x09\x96\x76\xc1\x1c\xaf\x68\x0c\x63\xe3\x79\xe3\x9c\xaf\xd0\xc4\xd0\x36\xe1\x35\x0a\xc2\x21\xa6\x12\x86\xf0\x0e\x82\x4c\x9e\x80\x13\xa6\x1c\xd1\x2b\x50\x8a\x31\x66\x6c\x64\x3c\xbe\x01\x22\x0b\x50\x15\x83\xe4\x24\x10\xfb\xc1\x95\x65\xfe\x7c\x30\x6a\x3b\x40\xd9\x29\xb7\x5a\xab\x22\x54\x1d\x74\xda\x10\x07\x7d\x83\x26\xe8\x35\x3a\x45\x33\x34\x69\x84\xb6\x36\x5c\xab\xe3\x54\x05\xa4\xea\x80\xd3\x8e\x36\x76\x1c\xbb\x22\x8e\x65\x7b\x34\xd4\xb1\xfd\xe7\xc8\x73\x75\x30\x44\xd8\x26\x0f\x82\x89\xfe\xde\x69\x7b\xeb\xe5\xa1\x8c\xd3\x77\xeb\xfd\xfc\x53\xb3\x9a\x1e\x5a\x56\xe4\x5d\x16\xe6\x12\xad\x91\x6a\xbb\xfd\x6f\xe1\x73\xab\xef\x13\x84\x85\xa0\x01\x51\x0e\x9a\x45\xb4\x3e\x0e\x43\x0e\x42\x8d\x55\xf2\x14\xda\x16\xe9\xfa\x18\xca\x6e\xd0\x6e\xfe\x5a\x98\x5d\x8d\x5f\x33\x3d\x9a\xe9\xeb\xde\x4b\x2b\x69\x06\x1d\xcd\x88\x71\xa8\x63\xe8\x0e\x77\x75\x8b\x4f\x6c\x21\xd8\xd3\x8b\xb5\x6a\x3a\x7c\x18\xc7\xbe\x92\x5f\xa5\x50\x53\xf3\x8b\x6a\xce\xc0\x7c\x8b\xc7\x5a\xc2\x41\x71\x94\xc6\xa9\x3a\x16\x92\x53\xf4\xe5\x97\xba\x56\x4c\x7d\x97\xe1\xf9\xf3\x34\xb8\x06\x69\x2d\x43\x59\x78\x61\xb5\x71\x2d\x4e\x9a\x85\xc6\x41\x00\x42\x5b\x92\x16\x3d\xcb\xa2\xf4\x64\x58\x33\x73\x83\x1b\x19\x89\x95\x45\xaa\xae\x1e\x4f\x70\x31\xb5\x9c\x5a\x66\xf7\xab\x12\xdb\xfc\xde\xa2\xf1\x51\x46\xdb\x20\xfa\x07\x92\x7d\x07\x04\x2f\x4a\x67\xd2\x66\xca\x03\xf0\x55\x58\xc9\xe9\xda\x01\x63\xab\xe9\xf9\x8c\x46\x24\x58\x67\x16\xe8\xfe\xec\x69\x87\x96\xfc\x23\x9b\x7a\xe5\xb0\x5a\x30\x74\x8e\xbe\xfe\xfa\xfb\x5f\xff\x7b\xa0\x86\xe3\xfd\x9f\xd9\x97\xf2\x66\xc8\x7b\x36\x39\x7d\x36\x3c\x9d\x0c\x4f\x5f\x78\x2a\x3a\xf0\x7e\x97\x58\x6a\x74\xf6\x66\x16\x59\x51\xb6\xdd\xa5\xfe\x79\xdf\x2f\x16\x10\xa8\x5a\xef\x22\x8a\xe8\xad\x77\x52\xac\xbc\xd0\x40\x56\x60\xcd\x6a\xc4\x74\xf6\x13\x11\xf2\x5b\x33\x45\x27\x9d\xd5\x3f\xa7\x91\x24\x6f\x30\x97\x7f\x32\x95\xe3\x88\x46\xf2\xff\x82\x08\x24\x74\xb4\xf7\x3f\x60\x9b\xfb\x89\x06\x3a\xab\xf0\x0a\x44\x57\x25\xb1\x7f\xb3\x16\xa1\x46\x85\x79\x32\xc3\xb7\x62\x26\xa6\xb3\xd9\xec\xe9\x5d\xc9\x5f\x32\x0f\x30\xab\xca\xc6\xb5\xb8\x39\x69\xd2\x54\xa7\x32\x2e\xe6\x94\x9b\x81\xb2\x6c\xa0\xad\x6a\xa9\xd0\x29\xd5\x74\x29\xe5\xd7\xf9\x5b\x35\x45\x2d\x4a\xe9\x53\x7b\x11\x44\x8d\x04\x6f\xd2\x2e\xf6\xac\x56\xb1\xb7\x2a\xbb\xd3\x80\xf6\x9d\x89\xf1\x7f\x64\x73\xa1\xd7\xfa\xcd\x40\x19\x7b\xcd\xd9\x21\xc2\x42\x92\x00\x07\x2b\x70\x71\x8a\x8e\x15\x3c\xb5\x96\x85\x44\x14\xdd\x5d\xff\x6b\xf1\x79\x4d\x3c\x34\x2d\x0c\x4d\x0b\xc5\x38\x4a\x01\xd6\x51\x04\xc9\x52\xae\xda\x42\x23\xdd\xc2\xb1\x4a\x6d\x54\x38\xd5\x1d\x46\x59\xda\x19\xea\x15\x30\x15\x00\x40\xb5\xa7\x99\x7d\x48\xf0\x3c\x82\x50\x21\x49\x4f\xb9\x4e\x33\x40\xd9\x05\x84\xeb\x8a\x69\xdc\xa4\xdb\x0c\xba\x66\xc6\x36\xe9\x26\xa5\x14\xd0\xbb\xee\x4a\x9b\x44\x5d\xc2\xa8\x0e\x21\x59\x92\xa4\x1e\x9c\x7b\x19\x41\x42\xc3\x7a\x00\x9f\xb5\x6a\xa4\xc8\x68\xf4\x18\x3a\xf6\xcc\xca\x1a\xcf\x61\x39\x49\x63\xdf\x0c\x50\x35\x25\x1c\xcb\xa9\x02\x69\xcc\x71\x0c\x4a\x72\x13\xd9\x26\x25\x15\x9b\x06\x35\x4d\xa1\x7e\x93\x8f\xcc\x77\x07\x0d\x8d\x82\x97\x69\x34\x1b\xa3\xbc\x9e\x7b\x9c\xa3\xaf\xa6\x2f\x5e\x29\x3b\xae\x87\xd9\xaa\xf6\xb2\x21\xc6\xd6\x3d\x18\x1f\xbc\xea\xb9\x33\x58\xf4\xbb\x2c\x91\xdf\xc7\x56\x9d\x95\x76\x39\x76\x2e\xa0\xee\x69\x86\x3c\xaf\x8e\x0a\xe1\xbc\x0a\x06\xe1\xbc\x2f\x12\x84\xf3\x83\x60\x40\xb9\xf2\x1c\x0b\xe8\x89\x04\x39\xf9\x7e\x60\x10\xce\x9b\xf6\x56\xb6\x82\x42\x51\xca\xfd\x70\xa1\xa2\xa6\x36\x50\x28\xcf\x0b\x0f\x45\x01\x0b\xc2\x79\xfe\xc7\x5d\x8b\x07\x76\x6e\x21\xd9\x28\xaa\x55\x07\xb6\x32\x47\x18\x48\x24\x59\x10\x95\x55\x55\x03\xac\x3a\x49\xae\xe0\x86\xca\x2f\x2c\xbf\xe7\x29\x0b\x6c\xd6\x8f\xd2\x81\xd3\xb3\xbf\xd5\xee\x0c\x7d\x8c\x75\x49\x96\x23\xe6\x2a\x08\xe7\x59\x69\x4e\xc7\xb0\x10\xb7\x94\x87\x65\x3a\x57\xaa\x2c\xf7\x9a\x30\x7f\x41\x54\x7c\x29\x12\xcc\xc4\x8a\xca\xc2\x86\x02\x63\xd1\xda\x27\x71\x0c\x21\xc1\x12\xa2\xb5\x6e\xc4\x56\x36\x21\x6c\xdd\xe4\x0c\x55\x0b\x6c\x65\xe4\x95\x4a\xa7\xbc\xe6\xda\x99\x2b\xb7\x09\x73\xa5\xfe\xb2\x59\x04\x85\x55\x15\xaf\x77\x98\x7b\x80\x01\xf5\x46\xab\x4a\xd7\xa3\x70\x5e\x46\xa8\xae\xdd\x8e\x06\x10\x36\xec\x0a\x81\xbb\x5c\xa8\xb8\x51\x56\x2d\x12\xed\x2e\xd5\xcf\xb7\x5e\xb7\x68\xc6\xf8\x4b\xd1\x4f\x1a\xda\x6d\x43\x8c\x3a\x48\x34\x39\x5e\xdd\xde\x3a\x3c\xb0\x9d\x62\x86\x2a\xfa\x2a\xd0\x65\x9b\x48\xf9\xe8\x22\x2c\x44\xa3\x82\x4a\x3a\x50\x54\x6d\xf1\x47\x0f\x37\x69\x72\xb9\x02\x9f\x73\xcc\x54\x52\x3f\x26\x09\xe5\xce\xea\xfd\x94\x2d\x39\x0e\xcd\x19\xee\x02\x47\x42\x91\x31\xe0\x0b\xca\x63\xdd\x03\x49\x04\x59\xae\x64\xbe\xd6\x16\x9c\x4f\x15\xf8\x4d\xc4\xc6\x67\x1a\x43\x15\x2b\x50\xc1\x01\x8a\x94\x26\xce\x55\xf8\xd7\x32\xd1\x6c\xe9\x39\xc3\xef\xda\xb6\xac\x46\x12\x8d\x1e\x7c\x2f\x4b\xc1\xbd\x79\x72\x53\xac\x51\xd1\xa0\x59\xda\x74\xa1\x70\x25\x85\xd8\xa3\xdd\x3d\xd8\x52\x29\x6c\x81\x63\x12\xad\x5b\xad\x48\xaf\x5d\x38\xe5\x94\xe3\x61\xbc\x16\x7f\x47\x7a\x1d\x2a\x16\xbc\x1c\x4d\xb4\xf6\x6d\x19\xa3\x42\x2e\x39\x88\xbf\xa3\xd3\x33\xbd\x26\xad\x13\x1c\x93\x00\x79\x99\xd8\x6e\xab\x6f\x41\xb9\x0f\x38\x58\x15\x97\x12\x37\xe3\x9a\x20\xa0\x89\x84\x44\x66\x59\x71\x65\x7e\x32\xea\x91\xbe\xb2\x70\xe9\xa9\x7a\xef\xca\xdd\x9d\x51\x65\x1d\xc4\xfa\x3f\x19\xb5\xf1\x94\x18\xe4\x8a\x86\x4d\xd4\xc5\x7a\xcb\xb4\xd9\x1a\x74\xf8\x90\x84\x8c\x92\x44\x16\x10\xd3\x15\xf5\x40\xcc\xae\x90\xab\x1b\x2f\xbb\x60\xee\x01\x50\xae\x3a\xd6\x52\x28\x54\x6d\x20\x1b\xc1\xa8\xb6\xa8\x5c\x16\xe0\xfb\x6a\x74\xcb\x89\x04\xde\x86\x02\xb7\xbc\x35\x36\xe2\x61\xc3\x42\x90\x0a\x49\xe3\x5c\xc2\xf2\xad\x08\xef\xe2\x97\x7f\xe8\xa3\x70\x21\xb1\x24\x81\x1f\x43\x3c\x07\x9e\x2d\x9f\xfb\x48\xdf\xb8\xba\x16\x56\xd4\xec\x30\x1e\x2f\xcd\x4d\xaa\x9d\xee\xb2\x28\x9e\xde\xb7\x59\x3e\x9a\x23\xe0\x46\x60\xee\x79\x28\xa6\x87\xdc\xef\xda\x4a\xc6\xb7\xc3\xed\x95\xae\xbe\xdc\x41\x5a\xe3\x75\x93\x8c\xb1\xf5\x0a\x89\x6a\x6c\xe7\x7b\x27\x8a\xe9\x9e\x0e\xc2\xee\xfb\xfc\x6f\xd7\x68\x53\x8f\x45\xfb\xc3\xc1\x77\x4d\x54\x4b\x0f\x74\x8c\x6c\xa4\x6e\x3d\x80\x2a\x8f\xd1\xdc\x4b\xab\x23\x7c\xcf\x1b\x0a\x45\x0b\xee\xb8\xbd\xe6\xfa\xcc\x77\x0e\x42\x30\xd2\xdb\x2b\x30\x17\x8c\x65\x7b\x31\x48\x13\xe9\x53\x40\x07\x35\x0e\xa7\x51\x43\x07\x2e\x87\x20\x2e\xb4\x2b\x5f\x2d\x1c\x68\x1f\x5d\x6a\x8b\xb1\x8b\x39\xa7\xb1\x6f\xb7\x85\xce\xd1\xb3\x67\x06\x69\xa8\x9f\xed\x14\x65\x85\x8c\x53\x49\x03\x1a\xd9\xd1\xc9\x80\x19\xc4\x09\x48\xc8\x8d\x29\x28\xcb\xd1\xd7\x32\x0b\x28\x92\xad\x4d\x97\xde\xd3\x3b\x5b\xe9\x8c\x77\x33\x9e\x3e\xf3\x4e\x50\x5e\x91\x71\xe9\x9a\x2b\x34\x6b\xe5\xba\xb2\x27\xf6\x5d\x83\x79\x39\xf9\xea\x79\xc3\x70\xb2\xe2\x7e\x03\xba\xf4\x26\x23\xfd\xbf\xf1\x64\x6b\xaf\xba\xf1\x17\x95\x3e\x0b\x85\x79\x8f\xc5\xfe\x9e\xa0\x9f\xf1\x7a\x0e\x88\x83\x90\x9c\x04\x12\xd1\x24\x5a\xeb\x56\xd1\x1b\x4e\x55\xec\x02\xa9\x40\x66\x33\x14\xbd\x76\x28\x9f\x4a\xb4\xc2\x49\xb8\x46\xb7\x2b\x12\x01\x92\xf8\xda\xc0\xbb\xbe\x0f\x26\xd0\x2d\x91\x2b\x9a\x4a\x14\xe3\x24\xc5\x51\xb4\x46\x42\xac\x86\x8a\x82\x24\x92\x22\xb9\x02\xdb\xe0\xe8\xc0\x21\x3b\x6b\x7f\x75\x3a\x99\xd4\x94\x5d\xa9\x2a\x2a\xbc\xaa\xf4\xb2\x23\xb6\x61\x50\xe9\x56\x8b\x13\x0d\xda\x4d\xa0\x2e\x92\x2b\xab\x4c\xfe\xf0\xb4\xdf\xdc\xf7\x02\x10\x7b\x99\xef\x61\x71\x64\x68\x3b\xed\x0d\x27\x86\xfe\xc3\xa3\x8a\xf3\xba\x17\x67\x2d\xf6\x91\x55\x35\xd8\x47\x1a\xee\x64\x1f\xd9\x5d\xcb\xbe\x66\xbb\xa7\x58\x3b\x9a\xed\x3e\x62\xd5\xa1\xab\x52\xf5\x38\xda\xda\x47\xac\x43\xb5\xf5\xc0\x0e\xbe\xcd\xc3\xdd\x21\xc1\xd6\x03\xfc\xba\x4f\x77\xec\x92\xd7\x82\x82\x03\x1d\x6e\x3a\x9d\x7c\xd5\x32\x57\x59\xd5\xbd\xcf\x55\x0f\xb9\x9e\x9f\x4d\xeb\x41\x46\xa5\xea\xde\xe5\xea\x01\xdb\x79\xfa\xd6\x07\x7e\x75\xe2\xb6\x35\x90\xfb\xc9\x61\xab\x49\x1e\x0e\x8f\xe9\xac\x4c\x0d\x16\xb1\x65\x84\x3e\x4f\x23\x70\xc3\x1c\xaa\x0c\xd2\x64\xaa\xb5\x34\xed\x1c\x79\x76\x06\xf5\x26\x53\x65\xfa\xb2\x70\xb0\x3a\x79\x59\x45\x75\xea\x8a\x93\x57\xf4\x3d\x57\xf7\x80\xf1\x62\x2d\xd3\xb1\xa9\x65\x4b\x9e\xb3\x9b\x4a\x31\x23\xfb\xab\xf4\x6c\xa2\x23\xa4\x26\xa5\xda\xaa\x5d\xd5\x5a\x05\xb6\x0f\x3a\x76\x83\xcf\x1d\xc3\x87\xce\xd1\xb7\x0d\xbd\x75\xdc\x06\xcb\x1f\x7d\xd8\x36\x18\x1d\x4a\x3a\x64\x59\x9c\xbe\x65\x7b\xb0\xe7\x6a\xd1\xb0\x7d\xd2\xcf\x96\xb6\x9b\xd4\x76\xcb\xaa\x19\x58\x5d\x8b\x19\x49\x97\x32\xdd\x43\x90\xfa\x16\x43\x33\x63\x29\xb8\xdf\x6d\x2a\x12\x1a\xc2\x10\xde\xa9\xa1\x76\x1d\x13\x3f\xec\x14\xd8\xbc\xa7\x63\x0a\x2c\xc5\x27\x3a\x05\xf9\xd3\x98\xfb\x8e\x87\x9c\x67\xed\x16\x14\xf5\xb4\x98\xac\x71\xb7\x08\xee\xfd\x22\xe5\xdf\xab\xe7\x3d\x39\xb1\x9b\x92\xed\x30\xfa\x01\x67\xe6\xd5\xe4\x55\xdb\x4a\x64\xab\x1e\x68\x11\x3e\x48\x85\x4b\x8e\x17\x38\xc1\x8f\xa0\xbf\x69\x7b\x10\x33\x7d\xd0\x20\xe6\x30\x13\x5c\x73\x2a\x02\xca\xe0\x11\x34\x78\x36\x39\x6b\x0f\x03\xcf\x3e\x15\x0d\x16\xa3\xc1\xfb\x55\xdf\xc7\x1e\x46\xee\xba\x7a\x36\x5f\x3d\xde\x72\xc5\x76\x5b\xce\xf9\x7b\x3d\xc9\xd4\x9c\xd9\xd9\xdc\x3d\xec\x2d\xd8\xfb\xa2\x4d\x39\x7c\x56\x75\x8f\x39\xfc\xc9\x56\x65\x5f\xe5\x87\xa6\x26\x06\x39\xed\xa1\x7e\x7b\x77\xb4\xf7\x04\x58\xfa\xbd\xa6\xc0\xf2\xde\xe7\x24\x9c\x9d\x4d\x5b\xe6\xc0\xd5\x3c\xee\x14\xa8\x51\x81\xe8\x72\xf3\xcd\x60\xf0\x04\xfd\x3f\xa0\x04\x20\x44\x18\x09\x60\x98\xeb\xb3\xe9\xb2\xfe\x14\xbe\x20\x49\x11\xe3\x70\x03\x89\x44\xc1\x3a\x88\x48\x80\x42\x60\x90\x84\x90\x04\x6b\x34\x07\x79\x0b\x90\x0c\x9e\xe8\x83\x0d\xcc\x98\xe5\xc4\x49\x88\xdc\xfb\x5d\x23\x72\xbf\x9c\x82\x31\x95\xd4\x91\xa4\xf8\x44\xea\xf1\xf3\x89\x67\xcf\xb7\xe5\x13\x96\xe2\xde\xf3\x89\x32\xb0\xed\x9a\x54\x64\x46\xd4\xc3\x27\xcd\x73\xdc\x96\x83\x93\x96\x87\xb1\x3d\x5c\x57\x73\x6e\x77\xdc\x37\xfa\xb1\xeb\xe3\x1c\xbd\xbe\x6c\xda\xca\x7e\xd9\xb8\x97\xdd\xfb\xa4\xf2\xf3\x3a\xed\xfd\x98\x4f\x21\x1f\xfb\x18\xb2\x70\x23\xe9\x2d\x9d\xef\xf7\x14\xfe\x2d\x9d\x0f\x0d\xe3\x67\xfb\x81\x9d\xbe\x1f\xaf\xc8\x75\xd8\xe3\xaa\x52\xff\x0b\x4a\xed\x8d\xb7\x7f\x62\xe7\x80\x4f\x57\xbc\xa5\xf3\x5d\x2f\x2c\xbd\xa5\xf3\x8f\xe3\x43\x39\x87\xdf\x32\x7a\x4b\xe7\x07\xdd\x31\xfa\x04\xbf\x68\xf3\x96\xce\x9b\xaf\x3a\x25\x69\x14\xf9\xee\x4f\xfd\xd4\xd9\x0f\xd3\x98\x95\xf7\xed\x8e\x7a\xbd\x44\xb6\x0f\x90\x15\xbb\x9f\x72\x62\x11\xbf\xcf\x4b\xe5\xe3\xe2\x0b\xa2\xd2\x08\x35\xe6\x97\x06\x18\xd0\x38\x56\xd1\xdb\xb9\x86\x37\x34\x1c\xba\xef\x1f\x19\xe0\x2a\x7c\x03\x6f\x83\xc4\x14\x05\xcc\x56\xd4\x05\x54\xf5\xb3\xf1\x78\xcb\x3b\x52\x34\x1c\x72\x65\x8d\x82\xdc\x40\xa6\xbf\xf1\x18\xfd\x08\xeb\x20\xa2\xf8\xba\x1d\x6e\xaf\x2d\xc5\x8e\x60\x9b\xb1\x3d\x08\xb6\x36\xe1\x64\x98\x88\xc3\x81\xd2\x0d\xa3\xf7\x67\x7e\x32\x86\xfa\x3b\xc9\x47\xfa\xc0\x8f\x93\x68\x57\xa8\x74\x7c\x8f\x86\x97\x4e\x80\xfb\x04\x4d\xd7\xe6\x07\x42\xce\x32\x5c\xb9\xce\x46\xce\x74\xab\xc0\x29\x63\x36\x2e\x70\x64\xd8\xd6\x03\x21\x49\x12\xe9\x57\x10\xd9\x23\x7c\x2f\x58\xc5\x34\x44\xff\xf9\x0e\x35\x35\xeb\x1e\xa3\x37\xf5\x69\xa1\x25\xb3\xdc\xec\x41\xad\x61\xea\x7b\xc3\xa0\x0c\x14\xf5\xec\xa6\xc3\x33\x7a\x64\x38\x8e\x7b\x7b\x92\xf3\x23\xac\xbf\xd3\xf6\xfe\xe1\xf2\x9c\x87\x0c\x85\x3f\xbb\x1c\x67\x3c\x46\x7f\x50\x64\x3e\x30\x83\x0a\xfe\xd8\x99\x3c\x36\x6d\x06\x15\x8a\x3f\x50\x02\xf9\x72\xd2\x92\xb5\x1e\x98\xb7\x6e\x06\xff\x0a\x00\x00\xff\xff\x32\xab\x62\x12\x97\x57\x00\x00") func clusterTfBytes() ([]byte, error) { return bindataRead( @@ -124,7 +124,7 @@ func clusterTf() (*asset, error) { } info := bindataFileInfo{name: "cluster.tf", size: 0, mode: os.FileMode(0644), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa8, 0xfd, 0xee, 0x47, 0x8f, 0xda, 0x8a, 0xa6, 0x70, 0x6f, 0x3e, 0xf0, 0x15, 0x94, 0xda, 0xff, 0xb4, 0x79, 0x69, 0x12, 0x13, 0x8, 0x39, 0x86, 0x83, 0x40, 0x41, 0xc4, 0xfd, 0xa0, 0xb9, 0xa3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0x8b, 0x36, 0xfd, 0x16, 0x64, 0xac, 0x43, 0x3c, 0x45, 0xc8, 0x35, 0xfe, 0x30, 0x6e, 0xd, 0x62, 0x74, 0x3c, 0x49, 0xfb, 0x98, 0xbe, 0x8e, 0x46, 0xe, 0x97, 0x5b, 0xd3, 0xf1, 0xd3, 0x92}} return a, nil } @@ -208,7 +208,7 @@ func datasourceYaml() (*asset, error) { return a, nil } -var _elasticsearchTf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x6d\x6f\x13\x39\x10\xfe\x9e\x5f\x31\x67\x10\x07\x55\xb3\x4d\x8b\xee\x10\x2b\x72\xa8\xf4\x80\x43\xea\x9b\x28\xba\xfb\x80\x2a\xcb\xf5\x4e\x12\x53\xc7\x5e\x79\xbc\xc9\x05\x94\xff\x7e\xb2\xbd\xbb\xd9\xbc\x0a\xe9\xf2\x05\x76\x66\x6c\x8f\x1f\x3f\xf3\xcc\xd4\x21\xd9\xca\x49\x04\x26\xe6\xc4\x95\x98\x72\x42\x37\x53\x12\xb9\x56\xe6\x11\x0b\xee\xac\x46\x06\x0c\x89\xc1\x8f\x1e\x80\xb4\x95\xf1\xd0\xf9\x0d\x61\x26\x5c\x86\xc4\x95\x21\x2f\x8c\x44\x9e\x42\xfe\x80\x01\x3c\x7b\xd6\x38\xa5\x43\xe1\x31\x6e\x06\x6f\xe1\x14\x72\x18\xf4\x00\xc2\x91\xcd\x71\x46\x4c\x11\x86\xe1\xa0\x4c\x4c\xc5\x77\x6b\xc4\x9c\x32\x69\xa7\xac\xb7\xec\xf5\x0a\xe1\xc5\x2a\xc3\xd2\x6a\x25\x17\xbc\xb0\xb2\x9a\xa2\xf1\x31\x3b\x2e\x88\xaa\x29\xd6\xe9\x86\x4c\xc9\x0b\x8f\xc1\x1f\xbf\x00\x70\x34\x42\xe9\xc3\x11\xe7\x5a\xdb\x39\xeb\x45\x6b\xe9\x94\x91\xaa\x14\x9a\xea\x30\x00\xbf\x28\x71\x75\x3b\x76\x97\x12\x64\xb5\x57\x15\x68\xbc\x1a\x29\x74\x04\x43\xf8\xba\x9d\xef\x7d\x0c\x5c\xa6\xed\x85\xf4\xca\x9a\x14\x49\x9e\xf2\xf3\x98\xe5\xe7\x90\x64\x88\x5b\x86\xcb\x6d\x3f\x41\x8b\x79\xe7\x3a\x11\x9f\xf5\xdf\x10\xd8\xd3\x1f\x01\x60\xa9\x2b\xf2\xe8\x22\x86\xcb\x3e\x52\x3f\x2e\x0b\x00\xaf\x40\xa9\x51\x83\x21\x04\x30\xb3\x3d\x58\x66\xeb\x48\x66\xdf\xc8\x9a\x9f\x7c\x80\x2d\xe3\x81\x47\x48\xc9\xd7\xef\xd0\xc5\x09\x12\x52\x2f\xf3\x4b\x45\xfe\x5d\x25\x1f\xd1\xd7\x80\x36\x28\x25\x2c\x85\x33\xb9\x98\x53\x4e\x2f\xf3\x3c\x4f\x20\x20\x71\x32\xa2\xa4\x89\xf5\xdc\x61\x69\x49\x79\xeb\x16\xcb\x1a\xe7\x9f\x21\x44\x30\x3e\x81\xdb\xca\x83\x30\x05\xfc\x89\x1a\x3d\x82\x70\x08\x06\xb1\xc0\x02\xbc\x05\x87\x63\x15\xa0\x06\x3f\x41\x58\x9d\x02\xa4\x8c\xc4\x68\x94\x5a\x85\x23\xaa\x52\x5b\x51\x50\xdc\xc9\x4f\xd0\x40\x11\xb7\x23\x10\xe0\x91\x3c\xd8\x87\x6f\xe1\x70\x6f\x01\x0d\x55\x0e\x01\x67\xe8\x16\x7e\xa2\xcc\xf8\x57\x82\xb9\x75\x8f\xca\x8c\x41\x10\xe0\xbf\x25\x4a\x8f\xc5\x6e\x98\x3e\xa2\xbf\x89\x3b\xb1\x63\x08\xdf\xb7\xd5\xfa\x77\xba\x44\x6d\xfa\x7f\x40\x9e\x1c\x1d\xa2\x6c\x7a\xfd\x2e\x13\xd6\x68\xbb\x9f\xaa\x75\x70\x0f\xe0\xa7\x09\xba\x69\x6a\x48\xba\xbb\x90\x9a\x70\xe1\xbd\x90\x93\x8e\x60\xc4\xef\x94\x65\xd4\xa5\xa6\xa8\xba\x8b\xb3\xba\x06\xb3\x90\x6f\x9b\x23\x17\xce\x74\x02\x93\x71\x95\x59\x26\x5c\xcc\xe7\xe4\x08\xae\xae\xfa\xbf\xbd\x7e\x79\xfa\x7b\x0e\x1f\x6c\x20\x8d\xa2\xf0\xe4\xe1\x79\x8f\x23\x5b\xce\xff\xb9\x03\x21\x93\x62\x06\x96\x45\xf7\x44\xcc\x10\x44\xaf\xf3\x56\xfd\x07\x41\x58\x34\x08\x69\xf5\x98\xb8\x36\xb2\x81\xb8\x81\x28\xd6\x60\x1e\x16\xd4\x1a\xc6\xee\x1a\xae\xb3\x1c\xbe\xd6\xca\xd5\x0a\x5c\x08\x38\x8f\x4c\xea\x7a\xa3\x59\xdb\x31\x05\x12\x5d\xda\xf1\xfb\x19\x1a\x4f\xef\x84\x97\x13\x76\x7c\x38\x68\x97\xff\x22\x2a\xfe\xa5\x1d\xdf\x79\x87\x62\xca\x56\x11\xf7\x9d\x68\xf6\x3e\x16\x21\xcb\x9b\x22\xec\xfa\x6e\x1b\x6d\x66\x79\x37\x77\x58\x69\x72\xbe\xab\x5f\xb4\x61\xcb\xee\x66\x9f\x6b\x28\xc3\x9a\x86\xf4\x31\xd1\xa3\x76\xc5\xb2\xb7\x96\x1f\xfb\x1b\x1d\x25\x90\xd8\xd9\xe0\xf4\xac\x7f\x3a\xe8\x9f\xbe\x8a\xd1\xcb\xde\xd1\xc9\x06\xdd\xa4\xb6\x55\x31\x0f\x68\x71\x6d\xc7\x7c\xec\x6c\x55\x26\xa2\x75\x3e\xdb\x8a\xd8\x53\x0f\xda\x8e\xfb\x29\x74\x9b\xcf\xb6\x44\x43\x28\x9c\x9c\xf0\xc2\x4e\x85\x32\x69\xf7\xd0\x3f\xd1\xa5\xad\xbd\x18\x87\xaa\x4e\x58\x5d\x1f\x38\x67\xb5\xae\x11\xc7\xb4\x25\x6f\xba\xcc\xde\x75\x61\x01\x9a\xb1\x32\xc8\x67\x09\x9e\xd5\x04\x50\x1b\xc2\x76\xb3\x52\x72\x5b\x26\xb1\x4a\xe9\x50\xf5\x60\xd0\x73\x55\x44\xdd\xa9\x21\xef\x9e\xd0\x06\xc0\x2f\x43\x60\x0c\xde\xee\xf1\xe6\x80\x3a\x52\xfb\xb9\xb7\x5a\x91\x7f\xde\xca\x45\x8a\xa1\x8c\x50\x47\xc9\xcc\x54\x41\x2f\x8e\x61\xf0\x22\x9e\x96\xd4\x8f\x50\x56\x4e\xf9\x45\x7a\x91\x26\x9d\x34\x88\x74\x3d\x19\x6a\x41\x5e\xc9\xaf\x83\xfb\x4c\x15\x75\x0f\x09\x77\x7f\xa0\x8d\x8b\x05\x0b\x1a\xf1\xa0\xb1\x80\x21\x78\x57\x61\x34\xcf\xac\x0e\x5d\x34\x0e\x13\x09\xa1\x07\x6d\xe5\x23\x2f\x30\x8e\x3b\xc1\xde\x8d\x23\xf5\x7d\x67\x5c\xb0\x13\xaf\x93\x49\xcf\xdf\x3c\x59\x03\x8d\xb4\x66\xa4\xc6\x75\x36\x1b\x53\xd8\x9e\xe9\x6c\x3d\x34\x0d\x3c\xdb\xa1\x75\x8e\xf1\x30\x21\x25\x52\x2d\x70\x2a\xf6\x8e\x37\x6f\x2e\x6e\xae\x3f\x7c\xfa\xd8\x5b\x09\xcb\x9e\x8a\x69\xca\x70\xb7\x2a\xad\x0b\xd3\x86\x3a\x31\x0c\x05\x7a\xbc\xe9\xef\x2a\x03\xdb\xe1\x3f\xa0\x2a\xfb\xd5\x00\x29\x7f\xfa\xa3\x25\x53\xe8\xf4\xd6\x64\xb2\x72\x2e\xf4\x98\xc8\xff\xae\x5f\x0a\xad\xd1\xf1\x34\x0e\xfa\x45\x1b\x58\xab\x39\x57\xc5\x32\x4f\x45\x75\xb2\xbb\x92\x4e\x8e\x3a\x52\xd5\x68\x0f\x24\xa6\x01\xd4\xd8\x86\xca\xc4\x12\x4d\x41\x3c\x56\x5a\x42\xed\xc0\xa8\x9e\x21\x85\xcb\xde\x87\x95\x41\x78\xca\xea\x41\x2b\x0a\x63\xc5\x06\x6d\x9f\xc0\xbb\xcf\xe7\xd7\x17\x7f\xe5\x50\x28\x0a\xec\x0d\xe1\xb0\x0a\x87\xa9\x30\x95\xd0\x7a\x01\x45\x85\xa1\x2b\x35\xad\x2c\x91\xbe\x25\xfc\x48\x68\x4a\x4c\xde\xa5\x80\x9d\x4e\xb9\xcb\x9d\x75\xe5\x31\xb6\xcd\xb0\x51\xb0\x74\x87\xf0\xf6\x37\x04\xf6\xfe\x8e\x9f\xdf\xde\x5e\x7e\xba\x38\xff\xf2\xe9\xe6\x9a\x5f\xde\x7c\xbc\x6b\x35\x4c\x14\xb3\xc0\xdb\x62\x55\xca\x1b\x95\x5a\x27\xbd\xe7\xd7\xbd\x8b\x30\xd6\x2c\xa6\xb6\x22\x2e\x2a\x3f\xe1\x9b\x2b\x3b\x75\xae\x8c\x47\x67\x84\xe6\x15\xa1\xe3\x81\x1e\xa1\x57\xef\x52\x84\xa9\x88\xef\x1f\xe3\xd6\x13\x5b\xf7\xb5\x93\xfe\x10\xd8\xa6\x9d\xed\x88\x2f\x05\xd1\xdc\xba\x70\x16\xbb\xda\xb4\x0f\x5c\xc1\x7a\x0d\xc1\x22\x4a\x68\xa4\x5b\x94\x9e\x8b\x30\xdd\x91\xdf\xc0\xa6\xcd\xb7\xdb\x15\xd0\x14\xa5\x55\xc6\x6f\xe1\x39\xb2\x4e\x22\x9f\x78\x5f\xd2\x36\x32\x5e\x77\x44\xb5\x1d\xee\xd8\x6d\xfc\x5f\xff\x4a\x99\xfe\x97\xcb\xbb\xfe\x69\xff\xac\x7f\x36\x38\x7d\xdd\x1f\xbc\x6a\x1f\xd2\xd8\x02\xb9\xb7\x3c\xfe\x5b\xe7\x1b\x3a\xcd\xa1\x54\x0f\xea\x5d\xfc\x6b\xb4\xf9\xbb\x73\xd9\xfb\x2f\x00\x00\xff\xff\x91\x0c\x98\x55\xf5\x0e\x00\x00") +var _elasticsearchTf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\xdd\x6e\xdb\x38\x13\xbd\xf7\x53\x0c\xd4\xa2\x5f\x13\xc4\x8a\x93\xe2\xdb\xa2\x42\xbd\x45\x9a\x6d\xbb\x05\xf2\x87\xa6\xd8\xbd\x08\x02\x82\xa6\x26\x36\x1b\x9a\x14\x38\x94\xbd\x6e\xe1\x77\x5f\x90\x94\x64\xda\xb1\x8d\x00\xab\x1b\x5b\xc3\x19\xf2\xf0\x70\xe6\x70\x64\x91\x4c\x6d\x05\x42\xc6\xe7\xc4\x24\x9f\x32\x42\x3b\x93\x02\x99\x92\xfa\x11\x4b\x66\x8d\xc2\x0c\x32\xa4\x0c\x7e\xf5\x00\x84\xa9\xb5\x83\xe4\x19\xc2\x8c\xdb\x1c\x89\x49\x4d\x8e\x6b\x81\x2c\xba\xfc\x0e\x03\x78\xf5\xaa\x1d\x14\x16\xb9\xc3\x30\x19\x7c\x80\x13\x28\x60\xd0\x03\xf0\x4b\xb6\xcb\x69\x3e\x45\x18\xfa\x85\x72\x3e\xe5\x3f\x8d\xe6\x73\xca\x85\x99\x66\xbd\x65\xaf\x57\x72\xc7\x57\x08\x2b\xa3\xa4\x58\xb0\xd2\x88\x7a\x8a\xda\x05\x74\x8c\x13\xd5\x53\x6c\xe0\x7a\xa4\xe4\xb8\x43\x3f\x1e\xde\x00\xf0\xe1\x01\x85\xf3\x4b\x9c\x29\x65\xe6\x59\x2f\x58\x2b\x2b\xb5\x90\x15\x57\xd4\xb8\x01\xb8\x45\x85\xab\xdd\x65\xb7\x11\x60\xd6\x8c\xca\x12\xb5\x93\x0f\x12\x2d\xc1\x10\xee\x9e\xe2\xbd\x0f\x8e\xcb\x38\x3d\x17\x4e\x1a\x1d\x3d\xc9\x51\x71\x16\x50\x7e\xf3\x20\xbd\xdf\xd2\x6f\xee\xe9\x11\x74\x9c\x27\xdb\x09\xfc\xac\x3f\x43\xc8\x5e\xfe\xf2\x04\x0b\x55\x93\x43\x1b\x38\x5c\xf6\x91\xfa\x21\xcc\x13\xbc\x22\xa5\x61\x0d\x86\xe0\xc9\xcc\x77\x70\x99\xaf\x33\x99\xff\x20\xa3\x9f\x79\x00\x4f\x8c\x7b\x0e\x21\x82\x6f\xce\x21\xe5\x09\x22\x53\x6f\x8a\x0b\x49\xee\x63\x2d\x1e\xd1\x35\x84\xb6\x2c\x45\x2e\xb9\xd5\x05\x9f\x53\x41\x6f\x8a\xa2\x88\x24\x20\x31\xd2\xbc\xa2\x89\x71\xcc\x62\x65\x48\x3a\x63\x17\xcb\x86\xe7\xe7\x24\x84\x37\xbe\x80\x9b\xda\x01\xd7\x25\xfc\x81\x0a\x1d\x02\xb7\x08\x1a\xb1\xc4\x12\x9c\x01\x8b\x63\xe9\xa9\x06\x37\x41\x58\xad\x02\x24\xb5\xc0\x60\x14\x4a\xfa\x25\xea\x4a\x19\x5e\x52\x98\xc9\x4d\x50\x43\x19\xa6\x23\xe0\xe0\x90\x1c\x98\xd1\x0f\xbf\xb8\x33\x80\x9a\x6a\x8b\x80\x33\xb4\x0b\x37\x91\x7a\xfc\x3f\x82\xb9\xb1\x8f\x52\x8f\x81\x13\xe0\x3f\x15\x0a\x87\xe5\x76\x9a\xbe\xa0\xbb\x0e\x33\x65\x47\xe0\xdf\x6f\xea\xf5\xf7\xb8\x89\xc6\xf4\xdf\x88\x3c\x3e\xdc\x97\xb2\xf1\xf4\xd3\x4c\x58\x4b\xdb\xdd\xa9\xda\x38\xf7\x00\x9e\x9d\xa0\x9b\xa6\x36\x49\xb7\x17\x52\xeb\xce\x9d\xe3\x62\x92\x08\x46\x78\x8f\x28\x83\x2e\xb5\x45\x95\x06\xe7\x4d\x0d\xe6\x1e\x6f\x87\x91\x71\xab\x13\xc7\x68\x5c\x21\xcb\xb9\x0d\x78\x8e\x0f\xe1\xf2\xb2\xff\xff\x77\x6f\x4e\x7e\x2b\xe0\xb3\xf1\x49\x23\xc9\x1f\xb9\x3f\xde\xa3\x90\x2d\x67\x7f\xdf\x02\x17\x51\x31\x7d\x96\x85\xe1\x09\x9f\x21\xf0\x5e\x72\x56\xfd\x11\x27\x2c\x5b\x86\x94\x7c\x8c\xb9\xf6\x60\x7c\xe2\xfa\x44\x31\x1a\x0b\x1f\xd0\x68\x58\x76\xdb\xe6\x7a\x56\xc0\x5d\xa3\x5c\x9d\xc0\x79\x87\xb3\x90\x49\xe9\x68\x30\x2b\x33\x26\x9f\x44\x17\x66\xfc\x69\x86\xda\xd1\x47\xee\xc4\x24\x3b\xda\xef\xb4\x6d\xfc\x3c\x28\xfe\x85\x19\xdf\x3a\x8b\x7c\x9a\xad\x3c\xee\x13\xef\xec\x53\x28\xc2\xac\x68\x8b\x30\x1d\xbb\x69\xb5\x39\x2b\x52\xec\xb0\xd2\xe4\x62\xdb\x7d\xd1\xb9\x2d\xd3\xc9\xbe\x35\x54\xfa\x98\x36\xe9\x03\xd0\xc3\x2e\x62\xd9\x5b\xc3\x97\xfd\x85\x96\x22\x49\xd9\xe9\xe0\xe4\xb4\x7f\x32\xe8\x9f\xbc\x0d\xde\xcb\xde\xe1\xf1\x46\xba\x09\x65\xea\x72\xee\xd9\x62\xca\x8c\xd9\xd8\x9a\xba\x8a\x89\x96\xbc\x76\x15\xb1\xa3\x1e\x94\x19\xf7\xa3\xeb\xd3\x7c\x36\x15\x6a\x42\x6e\xc5\x84\x95\x66\xca\xa5\x8e\xb3\xfb\xfb\x13\x6d\x9c\xda\xf1\xb1\xaf\xea\xc8\xd5\xd5\x9e\x75\x56\x71\xad\x38\xc6\x29\x59\x7b\xcb\xec\x8c\xf3\x01\xa8\xc7\x52\x23\x9b\x45\x7a\x56\x1d\x40\x63\xf0\xd3\xcd\x2a\xc1\x4c\x15\xc5\x2a\xc2\xa1\x7a\xa4\xd1\x31\x59\x7a\x84\xaf\x15\xea\xb1\x9b\xbc\x4e\x57\x58\x39\xe4\xa8\x38\x39\x29\xe2\x6e\x0f\x7c\x2b\x71\x00\x1f\xc0\x19\x25\xc9\x3d\x33\xa6\x80\x3b\x54\xa1\x02\x5e\x37\x71\x9d\xaa\xc4\x20\xca\x09\x55\x50\xd6\x5c\x96\x74\x70\x04\x83\x83\xa8\x8f\x84\xa2\xb6\xd2\x2d\xe2\x99\x35\x80\xef\x62\xab\x92\x8e\xb4\x2b\xde\x0d\xee\x73\x59\x76\xb7\x0c\x8e\x68\x63\xe7\xde\x82\x9a\x8f\x14\x96\x30\x04\x67\x6b\x0c\xe6\x99\x51\xfe\x9a\x0d\xdd\x46\xa4\x70\xa4\x8c\x78\x64\x25\x86\x7e\xc8\xdb\x53\x3f\x92\x3f\xb7\xfa\x79\x3b\xb1\xb5\xdd\xb7\x50\x5a\x96\x84\xd1\x0f\x72\xdc\xa0\xd9\x68\xd3\x76\xb4\x6f\xeb\xae\xb1\x23\x7a\xea\xda\x61\xfc\x69\x34\x32\x3e\xe7\x16\x35\x52\xba\xdb\x26\x62\xfb\xf8\xb6\xd0\x35\xac\x00\x7c\xc6\xa5\xe2\x23\xa9\x3c\xed\xc1\x75\x03\x76\x17\x1e\xa2\x77\xb8\x37\x1d\x59\x20\x85\x0b\xe1\x3d\x83\x94\xca\x70\x09\xbe\x7f\x7f\x7e\x7d\xf5\xf9\xeb\x97\xde\x4a\x21\x77\x94\x7e\xab\x27\xdb\xe5\x75\x5d\x61\x37\x64\x36\x43\xaf\x34\x47\x9b\xe3\xa9\xc4\x65\x5b\xc6\xf7\xc8\xe3\x6e\x59\x43\x2a\x5e\xfe\xea\xd2\xdd\xb7\x2c\x46\xe7\xa2\xb6\xd6\x5f\x96\xa1\x90\xd3\x71\xc1\x95\x42\xcb\x62\x5f\xeb\x16\x9d\x63\x73\x2d\x31\x59\x2e\x8b\xa8\x0e\xc7\xdb\x25\xe1\xf8\x30\xd1\xdc\x56\x44\x21\x16\x04\x40\xc3\xad\x97\x18\xac\x50\x97\xc4\x82\x64\x44\xd6\xf6\x7c\x73\xe4\x48\x7e\xb3\xf7\x3e\xd2\x2b\x68\x55\x8f\x94\x24\xdf\x1f\x6d\x94\xd7\x0b\xf8\xf8\xed\xec\xea\xfc\xcf\x02\x4a\x49\x3e\xaf\xbc\x3b\xac\xdc\x61\xca\x75\xcd\x95\x5a\x40\x59\xa3\xbf\x5e\xdb\x3b\x39\x16\x67\x97\xaa\x0f\x5c\x51\xcc\xe6\x6d\x52\x9e\x5c\xf9\xdb\x86\xf3\x54\xe7\xc3\xfd\xef\x27\xf2\x96\xf4\x6b\xa2\x7b\x86\x90\x7d\xba\x65\x67\x37\x37\x17\x5f\xcf\xcf\xbe\x7f\xbd\xbe\x62\x17\xd7\x5f\x6e\x3b\x31\xe6\xe5\xcc\xd7\x57\xb9\x52\x9c\x0d\x45\x69\x40\xef\x78\xd2\xbd\x70\x6d\xf4\x62\x6a\x6a\x62\xbc\x76\x13\xb6\x19\x99\xe8\x91\xd4\x0e\xad\xe6\x8a\xd5\x84\x96\xf9\xf4\xf0\x4d\xc7\x36\xe5\x9a\xf2\x70\xfe\xc1\x6f\x1d\xd8\xfa\x58\xf7\xc9\x32\x84\x6c\xd3\x9e\x6d\xf1\xaf\x38\xd1\xdc\x58\xbf\x56\x76\xb9\x69\x1f\xd8\x32\xeb\xb5\x09\x16\x95\x56\x0b\xbb\xa8\x1c\xe3\xbe\x4d\x25\xb7\xc1\x4d\x87\x37\xbd\xde\x50\x97\x95\x91\xda\x3d\xe1\xf3\xc1\x58\x81\x6c\xe2\x5c\x45\x4f\x99\x71\x2a\xd1\xfe\xae\x4b\xcd\x6e\xc2\xbf\xfe\xa5\xd4\xfd\xef\x17\xb7\xfd\x93\xfe\x69\xff\x74\x70\xf2\xae\x3f\x78\xdb\x1d\xa4\x36\x25\x32\x67\x58\xf8\x6d\xf0\xfa\x2b\x73\x1f\xd4\xbd\xba\x1c\x3e\xab\xdb\x0f\xe8\x65\xef\xdf\x00\x00\x00\xff\xff\x8b\xcc\xcf\xfb\xbe\x0f\x00\x00") func elasticsearchTfBytes() ([]byte, error) { return bindataRead( @@ -224,7 +224,7 @@ func elasticsearchTf() (*asset, error) { } info := bindataFileInfo{name: "elasticsearch.tf", size: 0, mode: os.FileMode(0644), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xda, 0x7, 0x5c, 0x5b, 0xf6, 0x52, 0xdc, 0x68, 0x5c, 0x4a, 0x71, 0xd5, 0xa5, 0xf5, 0x15, 0x6f, 0x30, 0x3a, 0xab, 0x38, 0x42, 0x84, 0x9e, 0x7e, 0x44, 0xfc, 0x58, 0xd4, 0x5c, 0xf8, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x54, 0xf, 0xb, 0xb6, 0x45, 0x89, 0x79, 0xac, 0x68, 0x84, 0x96, 0xf6, 0xb1, 0x13, 0x34, 0x8d, 0x79, 0x31, 0x6, 0x48, 0x19, 0x6, 0xcb, 0xed, 0xb1, 0x72, 0xea, 0x76, 0x24, 0x4a, 0xdd}} return a, nil } @@ -468,7 +468,7 @@ func samlIdpCrt() (*asset, error) { return a, nil } -var _variablesTf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\xcb\x6e\xdb\x30\x10\xbc\xfb\x2b\x08\xe5\x92\x1c\x2a\x38\x2f\xb4\x17\x1f\x7b\x69\x6f\xfd\x01\x82\xa4\xd6\x32\x63\xbe\xba\x4b\x3a\x71\x8b\xfc\x7b\x21\xc9\x0e\xe4\x68\x6d\x05\x45\x7c\xb2\x39\xb3\xb3\x0f\x2e\xc7\x3b\x85\x56\x69\x07\xa2\x32\xae\x50\x06\x94\x41\x79\xa8\xc4\xdf\xc5\xeb\x62\x31\x05\x77\xc9\x48\xdb\x9c\x85\xa9\xe8\x00\x99\x63\xa8\x94\xa4\x0d\x94\x55\x30\x20\x4d\x2c\x21\x5f\xa6\xe4\x7d\x9a\x56\xa1\x5a\x08\x79\x56\xe6\x94\x34\x12\xba\x12\xdf\x9d\xa2\x6c\x0d\x81\x42\xb3\x11\xc7\x18\x1a\x87\x03\xcd\x25\x18\x33\xd8\x32\x81\xe4\x0e\x90\x6c\x0c\x2c\x94\x0c\x77\x6c\x10\x54\x06\x89\xd1\xb1\x82\x14\x54\xa2\x4d\xcc\x12\x21\x45\xb2\x39\xe2\x7e\x42\x4b\x18\x5f\xf6\x4c\xf5\x42\x74\x65\x8a\x95\x08\xc5\x6b\xc0\x61\x14\xbf\xa0\xb1\xc4\x8f\x00\x3b\x48\x42\xe8\x7e\x4d\x6f\x72\x40\x43\x6c\xce\x74\x3f\xe0\x49\xa1\xf2\xb2\xc5\x58\x12\xbf\x51\xc7\x24\xad\x0d\x70\x76\x5c\xef\x3a\x62\xf3\x35\x7a\xee\xc2\xc6\x8c\x21\xe1\x65\x11\xa7\x88\x38\xc6\x71\xcb\x6d\x03\x21\xdb\xb5\x05\xe4\x58\x33\x2d\x35\x5a\x36\xb0\x56\xc5\x65\x86\xf9\x76\x53\x5e\xa5\x6b\x15\xf6\x37\x0b\x21\x0e\x6c\xb1\xea\x71\x21\x2a\x55\x30\xa2\xfa\xe2\xf7\xf4\xdb\x55\xa2\xff\xac\x44\xf5\xad\x5e\xd6\xfd\x91\x1c\xf0\xfa\xbe\x5e\x3e\xd6\x77\xd5\x49\x4c\x8a\x94\x5b\x84\x3e\x70\x25\xaa\xdb\x87\xfa\x6b\x47\x78\x9d\x94\x58\x08\x90\xbd\xb6\x46\xcb\xa4\x88\x9e\x23\x4e\x37\xa3\x6f\xbe\xfb\x2a\x13\xe0\x3a\xa2\xef\xc7\x69\x03\xd9\x76\x93\xd9\x89\xf6\x5b\x02\x19\x90\x4e\xba\x77\x96\xf2\x75\x37\x02\xca\x68\x43\x7b\x73\x73\x1a\x48\xb4\x91\xa9\x68\x67\x8d\xdc\xc2\xf4\x19\x78\x95\x33\xa0\x8f\x94\xa5\xb3\x06\x02\x81\x5c\x5b\xe6\x55\x69\x17\xcd\x56\x36\xb0\xb3\xa3\xd5\x3a\xd4\xd0\xcf\x74\xc8\x7e\x72\x05\x55\x9b\xee\xab\x0b\x32\x64\xff\x00\xc9\xde\x82\xde\xab\x1d\x1e\xdf\x58\xed\x76\x39\x2b\xd5\xbf\x80\xcf\x91\x52\x29\x7d\x8e\x90\x87\x8c\xd6\xd0\x07\xc4\x1e\xe7\xc5\x9e\xa2\xfe\x1c\x21\x18\x7b\xfb\x07\x24\xef\x96\x83\x11\xfe\x84\xbd\x71\x51\x6d\x47\x5e\x78\x31\xcf\xf6\xc0\xff\x8f\x59\x1e\x43\xc7\xde\xfa\xb6\xf4\x3a\x46\x77\x86\x7e\xd9\x00\xdf\x68\x53\x23\x39\xbb\xc6\x77\x0f\xf5\xb2\x33\x07\x5e\xa8\x81\x1d\xb8\x98\x7c\xf7\x47\xea\x63\x03\x6c\x9d\x57\xe2\x47\xd4\x82\x00\x77\x80\xec\xec\x9e\xa2\x96\x03\x3c\x67\xd0\x1c\x93\x6d\x95\xee\xa5\x2e\x66\x0b\x59\x36\xc5\x27\x59\xd0\x72\x14\x78\xc9\x9d\x7b\xb9\x23\x97\x35\x32\xf5\xdc\x3f\x2e\xd6\x19\x3a\x0c\xa1\xe5\xec\xbb\x83\x94\x3f\xa4\xfd\x17\x00\x00\xff\xff\xb6\x8c\x6b\x8e\x3d\x09\x00\x00") +var _variablesTf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\xcd\x6e\xdb\x3c\x10\xbc\xe7\x29\x08\xe5\x92\x1c\x3e\xc3\xf9\xc3\xd7\x8b\x8f\xbd\xb4\x97\xa2\x2f\x40\x2c\xa5\xb5\x4c\x9b\x22\xd9\x5d\xca\x89\x53\xe4\xdd\x0b\x51\xb6\x2b\x45\x6b\x3b\x28\xe2\x93\xa1\x19\xce\x92\xc3\xdd\xe1\x16\xc8\x82\x71\xa8\x8a\xd2\xb5\x9c\x90\xb4\x87\x06\x0b\xf5\xfb\xea\xed\xea\x6a\x0a\x6e\x63\xa9\x6d\x75\x12\xe6\xd6\x78\x4c\xda\x56\xdc\x51\x94\x4a\xbb\x88\x6a\xa1\x82\x59\x63\x99\x6e\xba\x2f\x4a\x41\x8c\x6a\xa1\x9c\xe5\x74\xc3\x89\xac\xaf\x6f\xf3\xe7\x75\x30\xd2\xe7\x48\xe1\x65\x27\x01\x50\xa3\x4f\x12\x80\x0e\x38\xd9\x92\x11\xa8\x5c\x49\x84\x06\x13\xd9\x92\x25\x68\x83\xbb\xd2\x05\xd8\x48\x58\x05\x09\x0c\x30\x4a\x18\x61\x65\x05\xc1\xb7\xdb\xb1\x4d\x10\xa3\xb6\x9e\x13\xf8\x12\x75\x19\x5a\x9f\x26\x4e\x8e\x28\x9d\x7d\x53\x46\x77\xf0\x8b\x32\x63\xd2\x40\xe8\x5a\x7d\x1d\x19\x74\x58\xc3\xc3\xe5\xc8\x97\x0a\x0c\x19\xe2\x36\x91\xf5\x16\x89\x6d\xf0\x12\x54\x12\x42\x42\x4d\xc1\x89\x2b\xd9\x43\xe4\x55\x48\x9a\x30\x06\xb6\x29\xd0\x4e\xa2\xbd\x06\x8f\x1a\x9e\x81\xd0\x23\xb3\x46\xdf\x21\xd3\xee\x1c\x32\x33\x11\xb6\x60\x1d\x18\xeb\x6c\xda\xf5\xd0\xf0\x90\xd7\xea\x47\x6e\x3a\x46\xda\x22\x0d\x85\x72\x33\x0a\xce\x1c\x1b\xdd\xb7\x8d\x41\xea\x45\x7e\xe6\x9e\x10\xed\xcd\xed\x72\x72\xbb\x3d\xea\x43\x75\xc2\xd9\x1e\x8f\x40\xd0\xe8\x9a\x42\x1b\xe5\x91\x3d\x14\xa9\xad\xc7\x93\x57\xf1\xee\x44\x62\xbd\xca\x5c\x6a\x86\x21\xa3\x2f\x78\x5e\xc4\x01\xb3\xc4\x38\xc4\x88\xad\xd0\x27\xbb\xb4\x48\x12\xeb\xc2\x91\x2a\xa3\x2b\x5c\x42\xeb\x92\xc0\x3c\xde\x54\x03\xf1\x06\xfc\xae\x9b\xd2\x3d\x5b\x2d\x54\x1f\x50\x05\xb4\x14\x08\xfe\x6b\x76\xfc\xcb\x15\x2a\xff\x16\xaa\xf8\x32\x9b\xcf\xf2\x27\xdd\xe3\xb3\x87\xd9\xfc\x69\x76\x5f\x8c\xd6\xc4\xc0\xa9\x26\xcc\x0b\x17\xaa\xb8\x7b\x9c\xfd\xdf\x11\xde\x26\x5b\x6c\x19\x49\xbc\xb6\xca\xe8\x08\xcc\xcf\x81\xa6\x9d\x91\x0f\xdf\xfd\xd5\x11\x69\x19\xa8\xc9\x76\x5a\xcf\xb6\x5e\x25\xd1\xd1\xdc\x25\x98\x90\xc6\x81\x9c\x73\xaa\xb3\x60\x9f\x55\xef\x72\x8a\x79\xa5\x63\x6b\x9c\x2d\xf5\x06\xa7\x93\xd7\x40\x4a\x48\x4d\xe0\xa4\x9d\x2d\xd1\x33\xea\xa5\x15\x06\xd9\xb8\x50\x6e\x74\x85\x5b\x3b\x68\xad\xfd\x1e\xb2\xa7\x7d\xf5\xd1\x15\x14\x75\x7c\x28\xce\xc8\xb0\x7d\x45\xd6\x39\xde\xde\xab\xed\x87\x6f\xa8\x76\x37\xbf\x28\x95\x27\xe0\x73\xa4\x20\xc6\xcf\x11\xda\xbf\x50\x1f\x10\x7b\xba\x2c\xb6\x0e\xe6\x73\x84\x46\x0f\xeb\x07\x24\xef\xe7\x7d\x10\x7e\x3f\x3c\xaa\x7f\xb3\xf0\x6c\x9d\xc3\x23\xfc\x0f\x5e\x1e\x96\x0e\xb3\xf5\xd8\xf4\x26\x04\x77\x82\x7e\x3e\x00\x8f\xb4\x69\x90\x9c\x6c\xe3\xfb\xc7\xd9\xbc\x0b\x07\x59\xa8\xc2\x2d\xba\x10\x9b\xee\x91\x6e\x42\x85\xe2\x3e\xaf\xd5\xb7\x60\xf6\xaf\x90\xe8\xdd\x3a\x18\xdd\xc3\x97\x02\x5a\x62\x8a\x47\xe5\x07\x6d\xda\x72\x83\x49\x57\x6d\x13\x75\x4b\x56\xa2\xe0\x4b\xea\xd2\xcb\x1d\xb8\x62\x90\xc1\x73\x1e\x2e\x31\x19\x3a\x8c\xb0\x96\xe2\xbb\x83\xa0\xd9\x97\xfd\x13\x00\x00\xff\xff\xa8\x62\x08\x55\x9e\x0a\x00\x00") func variablesTfBytes() ([]byte, error) { return bindataRead( @@ -484,7 +484,7 @@ func variablesTf() (*asset, error) { } info := bindataFileInfo{name: "variables.tf", size: 0, mode: os.FileMode(0644), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0xb6, 0xc9, 0xc9, 0xe7, 0x30, 0x4, 0x9f, 0x55, 0x82, 0x2f, 0xd3, 0xf5, 0x57, 0x41, 0x4a, 0xa9, 0x6f, 0xfd, 0x2f, 0x55, 0x1, 0xac, 0xae, 0x62, 0x0, 0xc, 0xcd, 0xf5, 0x3f, 0xeb, 0xaa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x46, 0x82, 0x3c, 0xae, 0x52, 0xc9, 0xe, 0x7e, 0xfe, 0xdc, 0x66, 0xf9, 0xdd, 0x9d, 0x98, 0x44, 0x1b, 0x88, 0xac, 0x30, 0xc9, 0xfe, 0xab, 0xf3, 0x6, 0x27, 0xaa, 0xf3, 0x47, 0x2c, 0x20}} return a, nil } diff --git a/deployment/terraform/assets/cluster.tf b/deployment/terraform/assets/cluster.tf index b1fb8c387..871faf6a2 100644 --- a/deployment/terraform/assets/cluster.tf +++ b/deployment/terraform/assets/cluster.tf @@ -34,6 +34,11 @@ data "aws_subnets" "selected" { name = "vpc-id" values = [var.cluster_vpc_id] } + + filter { + name = "availability-zone" + values = [var.aws_az] + } } resource "aws_key_pair" "key" { @@ -54,11 +59,14 @@ resource "aws_instance" "app_server" { host = self.private_ip } - ami = var.aws_ami - instance_type = var.app_instance_type - key_name = aws_key_pair.key.id - count = var.app_instance_count - subnet_id = var.cluster_subnet_id != "" ? var.cluster_subnet_id : element(tolist(data.aws_subnets.selected.ids), 0) + ami = var.aws_ami + instance_type = var.app_instance_type + key_name = aws_key_pair.key.id + count = var.app_instance_count + availability_zone = var.aws_az + iam_instance_profile = var.app_attach_iam_profile + subnet_id = (var.cluster_subnet_ids.app != "") ? element(tolist(var.cluster_subnet_ids.app), count.index) : element(tolist(data.aws_subnets.selected.ids), 0) + vpc_security_group_ids = [ aws_security_group.app[0].id, aws_security_group.app_gossip[0].id @@ -93,11 +101,12 @@ resource "aws_instance" "metrics_server" { host = self.private_ip } - ami = var.aws_ami - instance_type = "t3.xlarge" - count = var.app_instance_count > 0 ? 1 : 0 - key_name = aws_key_pair.key.id - subnet_id = var.cluster_subnet_id != "" ? var.cluster_subnet_id : element(tolist(data.aws_subnets.selected.ids), 0) + ami = var.aws_ami + instance_type = var.metrics_instance_type + count = var.app_instance_count > 0 ? 1 : 0 + key_name = aws_key_pair.key.id + availability_zone = var.aws_az + subnet_id = (var.cluster_subnet_ids.metrics != "") ? element(tolist(var.cluster_subnet_ids.metrics), count.index) : element(tolist(data.aws_subnets.selected.ids), 0) vpc_security_group_ids = [ aws_security_group.metrics[0].id, @@ -121,7 +130,8 @@ resource "aws_instance" "proxy_server" { instance_type = var.proxy_instance_type count = var.proxy_instance_count # associate_public_ip_address = true - subnet_id = var.cluster_subnet_id != "" ? var.cluster_subnet_id : element(tolist(data.aws_subnets.selected.ids), 0) + availability_zone = var.aws_az + subnet_id = (var.cluster_subnet_ids.proxy != "") ? element(tolist(var.cluster_subnet_ids.proxy), count.index) : element(tolist(data.aws_subnets.selected.ids), 0) vpc_security_group_ids = [ aws_security_group.proxy[0].id @@ -207,6 +217,17 @@ resource "aws_iam_user_policy" "s3userpolicy" { EOF } +resource "aws_elasticache_subnet_group" "redis" { + name = "${var.cluster_name}-redis-subnet-group" + subnet_ids = (length(var.cluster_subnet_ids.redis) > 0) ? tolist(var.cluster_subnet_ids.redis) : tolist(data.aws_subnets.selected.ids) + count = var.redis_enabled && length(var.cluster_subnet_ids.redis) > 1 ? 1 : 0 + + tags = { + Name = "${var.cluster_name}-redis-subnet-group-${count.index}" + } +} + + resource "aws_elasticache_cluster" "redis_server" { cluster_id = "${var.cluster_name}-redis" engine = "redis" @@ -216,8 +237,19 @@ resource "aws_elasticache_cluster" "redis_server" { parameter_group_name = "${var.redis_param_group_name}" engine_version = "${var.redis_engine_version}" port = 6379 + security_group_ids = [aws_security_group.redis[0].id] + availability_zone = var.aws_az + subnet_group_name = var.redis_enabled && length(var.cluster_subnet_ids) > 1 ? aws_elasticache_subnet_group.redis[0].name : "" +} + +resource "aws_db_subnet_group" "db" { + name = "${var.cluster_name}-db-subnet-group" + subnet_ids = (length(var.cluster_subnet_ids.database) > 0) ? tolist(var.cluster_subnet_ids.database) : tolist(data.aws_subnets.selected.ids) + count = var.db_instance_count > 0 && length(var.cluster_subnet_ids.database) > 1 ? 1 : 0 - security_group_ids = [aws_security_group.redis[0].id] + tags = { + Name = "${var.cluster_name}-db-subnet-group-${count.index}" + } } resource "aws_rds_cluster" "db_cluster" { @@ -230,7 +262,7 @@ resource "aws_rds_cluster" "db_cluster" { apply_immediately = true engine = var.db_instance_engine engine_version = var.db_engine_version != "" ? var.db_engine_version : var.db_default_engine_version[var.db_instance_engine] - + db_subnet_group_name = var.app_instance_count > 0 && var.db_instance_count > 0 && length(var.cluster_subnet_ids) > 1 ? aws_db_subnet_group.db[0].name : "" vpc_security_group_ids = [aws_security_group.db[0].id] } @@ -244,6 +276,8 @@ resource "aws_rds_cluster_instance" "cluster_instances" { auto_minor_version_upgrade = false performance_insights_enabled = var.db_enable_performance_insights db_parameter_group_name = length(var.db_parameters) > 0 ? "${var.cluster_name}-db-pg" : "" + availability_zone = var.aws_az + db_subnet_group_name = var.app_instance_count > 0 && var.db_instance_count > 0 && length(var.cluster_subnet_ids) > 1 ? aws_db_subnet_group.db[0].name : "" } resource "aws_db_parameter_group" "db_params_group" { @@ -284,9 +318,10 @@ resource "aws_instance" "loadtest_agent" { instance_type = var.agent_instance_type key_name = aws_key_pair.key.id count = var.agent_instance_count - subnet_id = var.cluster_subnet_id != "" ? var.cluster_subnet_id : element(tolist(data.aws_subnets.selected.ids), 0) + subnet_id = (var.cluster_subnet_ids.agent != "") ? element(tolist(var.cluster_subnet_ids.agent), count.index) : element(tolist(data.aws_subnets.selected.ids), 0) # associate_public_ip_address = true + availability_zone = var.aws_az vpc_security_group_ids = [aws_security_group.agent.id] @@ -304,7 +339,7 @@ resource "aws_security_group" "app" { count = var.app_instance_count > 0 ? 1 : 0 name = "${var.cluster_name}-app-security-group" description = "App security group for loadtest cluster ${var.cluster_name}" - vpc_id = var.cluster_vpc_id + vpc_id = var.cluster_vpc_id ingress { from_port = 22 @@ -344,7 +379,7 @@ resource "aws_security_group" "app_gossip" { count = var.app_instance_count > 0 ? 1 : 0 name = "${var.cluster_name}-app-security-group-gossip" description = "App security group for gossip loadtest cluster ${var.cluster_name}" - vpc_id = var.cluster_vpc_id + vpc_id = var.cluster_vpc_id ingress { from_port = 8074 @@ -382,7 +417,7 @@ resource "aws_security_group" "app_gossip" { resource "aws_security_group" "db" { count = var.app_instance_count > 0 ? 1 : 0 name = "${var.cluster_name}-db-security-group" - vpc_id = var.cluster_vpc_id + vpc_id = var.cluster_vpc_id ingress { from_port = 3306 @@ -455,7 +490,7 @@ resource "aws_security_group_rule" "agent-node-exporter" { resource "aws_security_group" "metrics" { count = var.app_instance_count > 0 ? 1 : 0 name = "${var.cluster_name}-metrics-security-group" - vpc_id = var.cluster_vpc_id + vpc_id = var.cluster_vpc_id } resource "aws_security_group_rule" "metrics-ssh" { @@ -511,7 +546,7 @@ resource "aws_security_group_rule" "metrics-egress" { resource "aws_security_group" "redis" { name = "${var.cluster_name}-redis-security-group" description = "Security group for redis instance" - vpc_id = var.cluster_vpc_id + vpc_id = var.cluster_vpc_id ingress { from_port = 6379 @@ -526,7 +561,7 @@ resource "aws_security_group" "redis" { resource "aws_security_group" "elastic" { name = "${var.cluster_name}-elastic-security-group" description = "Security group for elastic instance" - vpc_id = var.cluster_vpc_id + vpc_id = var.cluster_vpc_id ingress { from_port = 443 @@ -554,7 +589,7 @@ resource "aws_security_group" "proxy" { count = var.proxy_instance_count name = "${var.cluster_name}-proxy-security-group" description = "Proxy security group for loadtest cluster ${var.cluster_name}" - vpc_id = var.cluster_vpc_id + vpc_id = var.cluster_vpc_id ingress { from_port = 80 @@ -598,11 +633,13 @@ resource "aws_instance" "job_server" { host = self.private_ip } - ami = var.aws_ami - instance_type = var.job_server_instance_type - key_name = aws_key_pair.key.id - count = var.job_server_instance_count - subnet_id = var.cluster_subnet_id != "" ? var.cluster_subnet_id : element(tolist(data.aws_subnets.selected.ids), 0) + ami = var.aws_ami + instance_type = var.job_server_instance_type + key_name = aws_key_pair.key.id + count = var.job_server_instance_count + availability_zone = var.aws_az + subnet_id = (var.cluster_subnet_ids.job != "") ? element(tolist(var.cluster_subnet_ids.job), count.index) : element(tolist(data.aws_subnets.selected.ids), 0) + vpc_security_group_ids = [ aws_security_group.app[0].id, ] @@ -643,12 +680,12 @@ resource "aws_instance" "keycloak" { host = self.private_dns } - ami = var.aws_ami - instance_type = var.keycloak_instance_type - count = var.keycloak_enabled ? 1 : 0 - key_name = aws_key_pair.key.id - subnet_id = var.cluster_subnet_id != "" ? var.cluster_subnet_id : element(tolist(data.aws_subnets.selected.ids), 0) - + ami = var.aws_ami + instance_type = var.keycloak_instance_type + count = var.keycloak_enabled ? 1 : 0 + key_name = aws_key_pair.key.id + availability_zone = var.aws_az + subnet_id = (var.cluster_subnet_ids.keycloak != "") ? element(tolist(var.cluster_subnet_ids.keycloak), count.index) : element(tolist(data.aws_subnets.selected.ids), 0) vpc_security_group_ids = [ aws_security_group.keycloak[0].id, @@ -676,7 +713,7 @@ resource "aws_security_group" "keycloak" { count = var.keycloak_enabled ? 1 : 0 name = "${var.cluster_name}-keycloak-security-group" description = "KeyCloak security group for loadtest cluster ${var.cluster_name}" - vpc_id = var.cluster_vpc_id + vpc_id = var.cluster_vpc_id egress { from_port = 0 diff --git a/deployment/terraform/assets/elasticsearch.tf b/deployment/terraform/assets/elasticsearch.tf index 45f282498..96a73c046 100644 --- a/deployment/terraform/assets/elasticsearch.tf +++ b/deployment/terraform/assets/elasticsearch.tf @@ -79,13 +79,10 @@ resource "aws_opensearch_domain" "es_server" { engine_version = var.es_version vpc_options { - subnet_ids = [ - var.cluster_subnet_id != "" ? var.cluster_subnet_id : element(tolist(data.aws_subnets.selected.ids), 0) - ] + subnet_ids = (length(var.cluster_subnet_ids.elasticsearch) > 0) ? tolist(var.cluster_subnet_ids.elasticsearch) : [element(tolist(data.aws_subnets.selected.ids), 0)] security_group_ids = [aws_security_group.elastic[0].id] } - ebs_options { ebs_enabled = true volume_type = var.block_device_type @@ -95,7 +92,11 @@ resource "aws_opensearch_domain" "es_server" { cluster_config { instance_count = var.es_instance_count instance_type = var.es_instance_type - } + zone_awareness_enabled = var.es_zone_awareness_enabled + zone_awareness_config { + availability_zone_count = var.es_zone_awarness_availability_zone_count + } +} access_policies = <