HealthCheck
Provides a Spotinst Health Check resource.
Example Usage
using Pulumi;
using SpotInst = Pulumi.SpotInst;
class MyStack : Stack
{
public MyStack()
{
var httpCheck = new SpotInst.HealthCheck("httpCheck", new SpotInst.HealthCheckArgs
{
Check = new SpotInst.Inputs.HealthCheckCheckArgs
{
Endpoint = "http://endpoint.com",
Healthy = 1,
Interval = 10,
Port = 1337,
Protocol = "http",
Timeout = 10,
Unhealthy = 1,
},
ProxyAddress = "http://proxy.com",
ProxyPort = 80,
ResourceId = "sig-123",
});
}
}
Coming soon!
import pulumi
import pulumi_spotinst as spotinst
http_check = spotinst.HealthCheck("httpCheck",
check={
"endpoint": "http://endpoint.com",
"healthy": 1,
"interval": 10,
"port": 1337,
"protocol": "http",
"timeout": 10,
"unhealthy": 1,
},
proxy_address="http://proxy.com",
proxy_port=80,
resource_id="sig-123")import * as pulumi from "@pulumi/pulumi";
import * as spotinst from "@pulumi/spotinst";
const httpCheck = new spotinst.HealthCheck("http_check", {
check: {
endpoint: "http://endpoint.com",
healthy: 1,
interval: 10,
port: 1337,
protocol: "http",
timeout: 10,
unhealthy: 1,
},
proxyAddress: "http://proxy.com",
proxyPort: 80,
resourceId: "sig-123",
});Create a HealthCheck Resource
new HealthCheck(name: string, args: HealthCheckArgs, opts?: CustomResourceOptions);def HealthCheck(resource_name, opts=None, check=None, name=None, proxy_address=None, proxy_port=None, resource_id=None, __props__=None);func NewHealthCheck(ctx *Context, name string, args HealthCheckArgs, opts ...ResourceOption) (*HealthCheck, error)public HealthCheck(string name, HealthCheckArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args HealthCheckArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args HealthCheckArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HealthCheckArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
HealthCheck Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The HealthCheck resource accepts the following input properties:
- Proxy
Address string - Resource
Id string The ID of the resource to check.
- Check
Pulumi.
Spot Inst. Inputs. Health Check Check Args Describes the check to execute.
- Name string
The name of the health check.
- Proxy
Port int
- Proxy
Address string - Resource
Id string The ID of the resource to check.
- Check
Health
Check Check Describes the check to execute.
- Name string
The name of the health check.
- Proxy
Port int
- proxy
Address string - resource
Id string The ID of the resource to check.
- check
Health
Check Check Describes the check to execute.
- name string
The name of the health check.
- proxy
Port number
- proxy_
address str - resource_
id str The ID of the resource to check.
- check
Dict[Health
Check Check] Describes the check to execute.
- name str
The name of the health check.
- proxy_
port float
Outputs
All input properties are implicitly available as output properties. Additionally, the HealthCheck resource produces the following output properties:
Look up an Existing HealthCheck Resource
Get an existing HealthCheck resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: HealthCheckState, opts?: CustomResourceOptions): HealthCheckstatic get(resource_name, id, opts=None, check=None, name=None, proxy_address=None, proxy_port=None, resource_id=None, __props__=None);func GetHealthCheck(ctx *Context, name string, id IDInput, state *HealthCheckState, opts ...ResourceOption) (*HealthCheck, error)public static HealthCheck Get(string name, Input<string> id, HealthCheckState? state, CustomResourceOptions? opts = null)- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
The following state arguments are supported:
- Check
Pulumi.
Spot Inst. Inputs. Health Check Check Args Describes the check to execute.
- Name string
The name of the health check.
- Proxy
Address string - Proxy
Port int - Resource
Id string The ID of the resource to check.
- Check
Health
Check Check Describes the check to execute.
- Name string
The name of the health check.
- Proxy
Address string - Proxy
Port int - Resource
Id string The ID of the resource to check.
- check
Health
Check Check Describes the check to execute.
- name string
The name of the health check.
- proxy
Address string - proxy
Port number - resource
Id string The ID of the resource to check.
- check
Dict[Health
Check Check] Describes the check to execute.
- name str
The name of the health check.
- proxy_
address str - proxy_
port float - resource_
id str The ID of the resource to check.
Supporting Types
HealthCheckCheck
- Endpoint string
The destination for the request.
- Healthy int
The number of consecutive successful health checks that must occur before declaring an instance healthy.
- Interval int
The amount of time (in seconds) between each health check (minimum: 10).
- Port int
The port of the Spotinst HCS (default: 80).
- Protocol string
The protocol to use to connect with the instance. Valid values: http, https.
- Timeout int
the amount of time (in seconds) to wait when receiving a response from the health check.
- Unhealthy int
The number of consecutive failed health checks that must occur before declaring an instance unhealthy.
- Endpoint string
The destination for the request.
- Healthy int
The number of consecutive successful health checks that must occur before declaring an instance healthy.
- Interval int
The amount of time (in seconds) between each health check (minimum: 10).
- Port int
The port of the Spotinst HCS (default: 80).
- Protocol string
The protocol to use to connect with the instance. Valid values: http, https.
- Timeout int
the amount of time (in seconds) to wait when receiving a response from the health check.
- Unhealthy int
The number of consecutive failed health checks that must occur before declaring an instance unhealthy.
- endpoint string
The destination for the request.
- healthy number
The number of consecutive successful health checks that must occur before declaring an instance healthy.
- interval number
The amount of time (in seconds) between each health check (minimum: 10).
- port number
The port of the Spotinst HCS (default: 80).
- protocol string
The protocol to use to connect with the instance. Valid values: http, https.
- timeout number
the amount of time (in seconds) to wait when receiving a response from the health check.
- unhealthy number
The number of consecutive failed health checks that must occur before declaring an instance unhealthy.
- endpoint str
The destination for the request.
- healthy float
The number of consecutive successful health checks that must occur before declaring an instance healthy.
- interval float
The amount of time (in seconds) between each health check (minimum: 10).
- port float
The port of the Spotinst HCS (default: 80).
- protocol str
The protocol to use to connect with the instance. Valid values: http, https.
- timeout float
the amount of time (in seconds) to wait when receiving a response from the health check.
- unhealthy float
The number of consecutive failed health checks that must occur before declaring an instance unhealthy.
Package Details
- Repository
- https://github.com/pulumi/pulumi-spotinst
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
spotinstTerraform Provider.