CloudFormation Compatible Resource Types¶
AWS::AutoScaling::AutoScalingGroup¶
Available since 2014.1 (Icehouse)
Utility class to encapsulate Cooldown related logic.
This logic includes both cooldown timestamp comparing and scaling in progress checking.
Required Properties¶
- AvailabilityZones¶
- Not Implemented.List value expected.Updates cause replacement.
- MaxSize¶
- Maximum number of instances in the group.Integer value expected.Can be updated without replacement.
- MinSize¶
- Minimum number of instances in the group.Integer value expected.Can be updated without replacement.
Optional Properties¶
- Cooldown¶
- Cooldown period, in seconds.Integer value expected.Can be updated without replacement.
- DesiredCapacity¶
- Desired initial number of instances.Integer value expected.Can be updated without replacement.
- HealthCheckGracePeriod¶
Note
Not implemented.- HealthCheckType¶
Note
Not implemented.- InstanceId¶
- The ID of an existing instance to use to create the Auto Scaling group. If specify this property, will create the group use an existing instance instead of a launch configuration.String value expected.Updates cause replacement.Value must be of type nova.server
- LaunchConfigurationName¶
- The reference to a LaunchConfiguration resource.String value expected.Can be updated without replacement.
- LoadBalancerNames¶
- List of LoadBalancer resources.List value expected.Updates cause replacement.
- Tags¶
- Tags to attach to this group.List value expected.Updates cause replacement.List contents:
- VPCZoneIdentifier¶
- Use only with Neutron, to list the internal subnet to which the instance will be attached; needed only if multiple exist; list length must be exactly 1.List value expected.Updates cause replacement.List contents:
- Optional.UUID of the internal subnet to which the instance will be attached.String value expected.Updates cause replacement.
Attributes¶
update_policy¶
- AutoScalingRollingUpdate¶
- Map value expected.Updates cause replacement.Map properties:
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::AutoScaling::AutoScalingGroup
properties:
AvailabilityZones: [Value, Value, ...]
Cooldown: Integer
DesiredCapacity: Integer
InstanceId: String
LaunchConfigurationName: String
LoadBalancerNames: [Value, Value, ...]
MaxSize: Integer
MinSize: Integer
Tags: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
VPCZoneIdentifier: [String, String, ...]
AWS::AutoScaling::LaunchConfiguration¶
Optional Properties¶
- BlockDeviceMappings¶
- Block device mappings to attach to instance.List value expected.Updates cause replacement.List contents:
- Map value expected.Updates cause replacement.Map properties:
- DeviceName¶
- Required.A device name where the volume will be attached in the system at /dev/device_name.e.g. vdbString value expected.Updates cause replacement.
- Ebs¶
- The ebs volume to attach to the instance.Map value expected.Updates cause replacement.Map properties:
- DeleteOnTermination¶
- Optional.Indicate whether the volume should be deleted when the instance is terminated.Boolean value expected.Updates cause replacement.Defaults to
true
- Iops¶
- Not implemented.
- SnapshotId¶
- Optional.The ID of the snapshot to create a volume from.String value expected.Updates cause replacement.Value must be of type cinder.snapshot
- VolumeSize¶
- Optional.The size of the volume, in GB. Must be equal or greater than the size of the snapshot. It is safe to leave this blank and have the Compute service infer the size.String value expected.Updates cause replacement.
- VolumeType¶
- Not implemented.
- NoDevice¶
- Not implemented.
- VirtualName¶
- Not implemented.
- ImageId¶
- Glance image ID or name.String value expected.Updates cause replacement.Value must be of type glance.image
- InstanceId¶
- The ID of an existing instance you want to use to create the launch configuration. All properties are derived from the instance with the exception of BlockDeviceMapping.String value expected.Updates cause replacement.Value must be of type nova.server
- InstanceType¶
- Nova instance type (flavor).String value expected.Updates cause replacement.Value must be of type nova.flavor
- KernelId¶
Note
Not implemented.- KeyName¶
- Optional Nova keypair name.String value expected.Updates cause replacement.Value must be of type nova.keypair
- NovaSchedulerHints¶
- Scheduler hints to pass to Nova (Heat extension).List value expected.Updates cause replacement.List contents:
- RamDiskId¶
Note
Not implemented.- SecurityGroups¶
- Security group names to assign.List value expected.Updates cause replacement.
- UserData¶
- User data to pass to instance.String value expected.Updates cause replacement.
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::AutoScaling::LaunchConfiguration
properties:
BlockDeviceMappings: [{"DeviceName": String, "Ebs": {"DeleteOnTermination": Boolean, "SnapshotId": String, "VolumeSize": String}}, {"DeviceName": String, "Ebs": {"DeleteOnTermination": Boolean, "SnapshotId": String, "VolumeSize": String}}, ...]
ImageId: String
InstanceId: String
InstanceType: String
KeyName: String
NovaSchedulerHints: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
SecurityGroups: [Value, Value, ...]
UserData: String
AWS::AutoScaling::ScalingPolicy¶
A resource to manage scaling of OS::Heat::AutoScalingGroup.
Note while it may incidentally support AWS::AutoScaling::AutoScalingGroup for now, please don’t use it for that purpose and use AWS::AutoScaling::ScalingPolicy instead.
Resource to manage scaling for OS::Heat::AutoScalingGroup, i.e. define which metric should be scaled and scaling adjustment, set cooldown etc.
Required Properties¶
- AdjustmentType¶
- Type of adjustment (absolute or percentage).String value expected.Can be updated without replacement.Allowed values: “ChangeInCapacity”, “ExactCapacity”, “PercentChangeInCapacity”
- AutoScalingGroupName¶
- AutoScaling group name to apply policy to.String value expected.Updates cause replacement.
- ScalingAdjustment¶
- Size of adjustment.Integer value expected.Can be updated without replacement.
Optional Properties¶
- Cooldown¶
- Cooldown period, in seconds.Integer value expected.Can be updated without replacement.
- MinAdjustmentStep¶
- Minimum number of resources that are added or removed when the AutoScaling group scales up or down. This can be used only when specifying PercentChangeInCapacity for the AdjustmentType property.Integer value expected.Can be updated without replacement.The value must be at least 0.
Attributes¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::AutoScaling::ScalingPolicy
properties:
AdjustmentType: String
AutoScalingGroupName: String
Cooldown: Integer
MinAdjustmentStep: Integer
ScalingAdjustment: Integer
AWS::CloudFormation::Stack¶
Represents a child stack to allow composition of templates.
Required Properties¶
- TemplateURL¶
- The URL of a template that specifies the stack to be created as a resource.String value expected.Can be updated without replacement.
Optional Properties¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::CloudFormation::Stack
properties:
Parameters: {...}
TemplateURL: String
TimeoutInMinutes: Integer
AWS::CloudFormation::WaitCondition¶
Available since 2014.1 (Icehouse)
Resource for handling signals received by WaitConditionHandle.
Resource takes WaitConditionHandle and starts to create. Resource is in CREATE_IN_PROGRESS status until WaitConditionHandle doesn’t receive sufficient number of successful signals (this number can be specified with count property) and successfully creates after that, or fails due to timeout.
Required Properties¶
- Handle¶
- A reference to the wait condition handle used to signal this wait condition.String value expected.Updates cause replacement.
- Timeout¶
- The number of seconds to wait for the correct number of signals to arrive.Integer value expected.Updates cause replacement.The value must be in the range 1 to 43200.
Optional Properties¶
- Count¶
- The number of success signals that must be received before the stack creation process continues.Integer value expected.Can be updated without replacement.Defaults to
1
The value must be at least 1.
Attributes¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::CloudFormation::WaitCondition
properties:
Count: Integer
Handle: String
Timeout: Integer
AWS::CloudFormation::WaitConditionHandle¶
Available since 2014.1 (Icehouse)
AWS WaitConditionHandle resource.
the main point of this class is to : have no dependencies (so the instance can reference it) generate a unique url (to be returned in the reference) then the cfn-signal will use this url to post to and WaitCondition will poll it to see if has been written to.
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::CloudFormation::WaitConditionHandle
AWS::EC2::EIP¶
Optional Properties¶
- InstanceId¶
- Instance ID to associate with EIP.String value expected.Can be updated without replacement.Value must be of type nova.server
- Domain¶
DEPRECATED since 9.0.0 (Pike) - Now we only allow vpc here, so no need to set up this tag anymore.
Set to “vpc” to have IP address allocation associated to your VPC.String value expected.Updates cause replacement.Allowed values: “vpc”
Attributes¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::EIP
properties:
InstanceId: String
AWS::EC2::EIPAssociation¶
Optional Properties¶
- AllocationId¶
- Allocation ID for VPC EIP address.String value expected.Can be updated without replacement.
- EIP¶
- EIP address to associate with instance.String value expected.Can be updated without replacement.Value must be of type ip_addr
- InstanceId¶
- Instance ID to associate with EIP specified by EIP property.String value expected.Can be updated without replacement.Value must be of type nova.server
- NetworkInterfaceId¶
- Network interface ID to associate with EIP.String value expected.Can be updated without replacement.
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::EIPAssociation
properties:
AllocationId: String
EIP: String
InstanceId: String
NetworkInterfaceId: String
AWS::EC2::Instance¶
Utility class to encapsulate Scheduler Hint related logic.
Required Properties¶
Optional Properties¶
- AvailabilityZone¶
- Availability zone to launch the instance in.String value expected.Updates cause replacement.
- BlockDeviceMappings¶
- Block device mappings to attach to instance.List value expected.Updates cause replacement.List contents:
- Map value expected.Updates cause replacement.Map properties:
- DeviceName¶
- Required.A device name where the volume will be attached in the system at /dev/device_name.e.g. vdbString value expected.Updates cause replacement.
- Ebs¶
- The ebs volume to attach to the instance.Map value expected.Updates cause replacement.Map properties:
- DeleteOnTermination¶
- Optional.Indicate whether the volume should be deleted when the instance is terminated.Boolean value expected.Updates cause replacement.Defaults to
true
- Iops¶
- Not implemented.
- SnapshotId¶
- Optional.The ID of the snapshot to create a volume from.String value expected.Updates cause replacement.Value must be of type cinder.snapshot
- VolumeSize¶
- Optional.The size of the volume, in GB. Must be equal or greater than the size of the snapshot. It is safe to leave this blank and have the Compute service infer the size.String value expected.Updates cause replacement.
- VolumeType¶
- Not implemented.
- NoDevice¶
- Not implemented.
- VirtualName¶
- Not implemented.
- DisableApiTermination¶
Note
Not implemented.- KernelId¶
Note
Not implemented.- KeyName¶
- Optional Nova keypair name.String value expected.Updates cause replacement.Value must be of type nova.keypair
- Monitoring¶
Note
Not implemented.- NetworkInterfaces¶
- Network interfaces to associate with instance.List value expected.Can be updated without replacement.
- NovaSchedulerHints¶
- Scheduler hints to pass to Nova (Heat extension).List value expected.Updates cause replacement.List contents:
- PlacementGroupName¶
Note
Not implemented.- PrivateIpAddress¶
Note
Not implemented.- RamDiskId¶
Note
Not implemented.- SecurityGroupIds¶
- Security group IDs to assign.List value expected.Updates cause replacement.
- SecurityGroups¶
- Security group names to assign.List value expected.Updates cause replacement.
- SourceDestCheck¶
Note
Not implemented.- SubnetId¶
- Subnet ID to launch instance in.String value expected.Can be updated without replacement.
- Tags¶
- Tags to attach to instance.List value expected.Can be updated without replacement.List contents:
- Tenancy¶
Note
Not implemented.- UserData¶
- User data to pass to instance.String value expected.Updates cause replacement.
- Volumes¶
- Volumes to attach to instance.List value expected.Updates cause replacement.Defaults to
[]
List contents:- Map value expected.Updates cause replacement.Map properties:
- Device¶
- Required.The device where the volume is exposed on the instance. This assignment may not be honored and it is advised that the path /dev/disk/by-id/virtio-<VolumeId> be used instead.String value expected.Updates cause replacement.
- VolumeId¶
- Required.The ID of the volume to be attached.String value expected.Updates cause replacement.Value must be of type cinder.volume
Attributes¶
- AvailabilityZone¶
The Availability Zone where the specified instance is launched.
- PrivateDnsName¶
Private DNS name of the specified instance.
- PrivateIp¶
Private IP address of the specified instance.
- PublicDnsName¶
Public DNS name of the specified instance.
- PublicIp¶
Public IP address of the specified instance.
- show¶
Detailed information about resource.
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::Instance
properties:
AvailabilityZone: String
BlockDeviceMappings: [{"DeviceName": String, "Ebs": {"DeleteOnTermination": Boolean, "SnapshotId": String, "VolumeSize": String}}, {"DeviceName": String, "Ebs": {"DeleteOnTermination": Boolean, "SnapshotId": String, "VolumeSize": String}}, ...]
ImageId: String
InstanceType: String
KeyName: String
NetworkInterfaces: [Value, Value, ...]
NovaSchedulerHints: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
SecurityGroupIds: [Value, Value, ...]
SecurityGroups: [Value, Value, ...]
SubnetId: String
Tags: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
UserData: String
Volumes: [{"Device": String, "VolumeId": String}, {"Device": String, "VolumeId": String}, ...]
AWS::EC2::InternetGateway¶
Optional Properties¶
- Tags¶
- List value expected.Updates cause replacement.List contents:
- Not implemented.
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::InternetGateway
properties:
Tags: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
AWS::EC2::NetworkInterface¶
Required Properties¶
- SubnetId¶
- Subnet ID to associate with this interface.String value expected.Updates cause replacement.Value must be of type neutron.subnet
Optional Properties¶
- Description¶
- Description for this interface.String value expected.Updates cause replacement.
- GroupSet¶
- List of security group IDs associated with this interface.List value expected.Can be updated without replacement.
- PrivateIpAddress¶
- String value expected.Updates cause replacement.
- SourceDestCheck¶
Note
Not implemented.- Tags¶
- List value expected.Updates cause replacement.List contents:
- Not implemented.
Attributes¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::NetworkInterface
properties:
Description: String
GroupSet: [Value, Value, ...]
PrivateIpAddress: String
SubnetId: String
Tags: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
AWS::EC2::RouteTable¶
Available since 2014.1 (Icehouse)
Required Properties¶
- VpcId¶
- VPC ID for where the route table is created.String value expected.Updates cause replacement.
Optional Properties¶
- Tags¶
- List value expected.Updates cause replacement.List contents:
- Not implemented.
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::RouteTable
properties:
Tags: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
VpcId: String
AWS::EC2::SecurityGroup¶
Required Properties¶
- GroupDescription¶
- Description of the security group.String value expected.Updates cause replacement.
Optional Properties¶
- SecurityGroupEgress¶
- List value expected.Can be updated without replacement.List contents:
- List of security group egress rules.Map value expected.Can be updated without replacement.Map properties:
- CidrIp¶
- Optional.String value expected.Can be updated without replacement.
- FromPort¶
- Optional.String value expected.Can be updated without replacement.
- IpProtocol¶
- Optional.String value expected.Can be updated without replacement.
- SourceSecurityGroupId¶
- Optional.String value expected.Can be updated without replacement.
- SourceSecurityGroupName¶
- Optional.String value expected.Can be updated without replacement.
- SourceSecurityGroupOwnerId¶
- Not implemented.
- ToPort¶
- Optional.String value expected.Can be updated without replacement.
- SecurityGroupIngress¶
- List value expected.Can be updated without replacement.List contents:
- List of security group ingress rules.Map value expected.Can be updated without replacement.Map properties:
- CidrIp¶
- Optional.String value expected.Can be updated without replacement.
- FromPort¶
- Optional.String value expected.Can be updated without replacement.
- IpProtocol¶
- Optional.String value expected.Can be updated without replacement.
- SourceSecurityGroupId¶
- Optional.String value expected.Can be updated without replacement.
- SourceSecurityGroupName¶
- Optional.String value expected.Can be updated without replacement.
- SourceSecurityGroupOwnerId¶
- Not implemented.
- ToPort¶
- Optional.String value expected.Can be updated without replacement.
- VpcId¶
- Physical ID of the VPC. Not implemented.String value expected.Updates cause replacement.
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::SecurityGroup
properties:
GroupDescription: String
SecurityGroupEgress: [{"CidrIp": String, "FromPort": String, "ToPort": String, "IpProtocol": String, "SourceSecurityGroupId": String, "SourceSecurityGroupName": String}, {"CidrIp": String, "FromPort": String, "ToPort": String, "IpProtocol": String, "SourceSecurityGroupId": String, "SourceSecurityGroupName": String}, ...]
SecurityGroupIngress: [{"CidrIp": String, "FromPort": String, "ToPort": String, "IpProtocol": String, "SourceSecurityGroupId": String, "SourceSecurityGroupName": String}, {"CidrIp": String, "FromPort": String, "ToPort": String, "IpProtocol": String, "SourceSecurityGroupId": String, "SourceSecurityGroupName": String}, ...]
VpcId: String
AWS::EC2::Subnet¶
Required Properties¶
Optional Properties¶
Attributes¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::Subnet
properties:
AvailabilityZone: String
CidrBlock: String
Tags: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
VpcId: String
AWS::EC2::SubnetRouteTableAssociation¶
Required Properties¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::SubnetRouteTableAssociation
properties:
RouteTableId: String
SubnetId: String
AWS::EC2::VPC¶
Optional Properties¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::VPC
properties:
CidrBlock: String
Tags: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
AWS::EC2::VPCGatewayAttachment¶
Required Properties¶
- VpcId¶
- VPC ID for this gateway association.String value expected.Updates cause replacement.
Optional Properties¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::VPCGatewayAttachment
properties:
InternetGatewayId: String
VpcId: String
AWS::EC2::Volume¶
Base Volume Manager.
Required Properties¶
- AvailabilityZone¶
- The availability zone in which the volume will be created.String value expected.Updates are not supported. Resource update will fail on any attempt to update this property.
Optional Properties¶
- Size¶
- The size of the volume in GB.Integer value expected.Updates are not supported. Resource update will fail on any attempt to update this property.The value must be at least 1.
- SnapshotId¶
- If specified, the backup used as the source to create the volume.String value expected.Updates are not supported. Resource update will fail on any attempt to update this property.Value must be of type cinder.backup
- Tags¶
- The list of tags to associate with the volume.List value expected.Updates are not supported. Resource update will fail on any attempt to update this property.List contents:
- Map value expected.Updates are not supported. Resource update will fail on any attempt to update this property.Map properties:
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::Volume
properties:
AvailabilityZone: String
Size: Integer
SnapshotId: String
Tags: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
AWS::EC2::VolumeAttachment¶
Base Volume Attachment Manager.
Required Properties¶
- Device¶
- The device where the volume is exposed on the instance. This assignment may not be honored and it is advised that the path /dev/disk/by-id/virtio-<VolumeId> be used instead.String value expected.Updates are not supported. Resource update will fail on any attempt to update this property.Value must match pattern: /dev/vd[b-z]
- InstanceId¶
- The ID of the instance to which the volume attaches.String value expected.Updates are not supported. Resource update will fail on any attempt to update this property.Value must be of type nova.server
- VolumeId¶
- The ID of the volume to be attached.String value expected.Updates are not supported. Resource update will fail on any attempt to update this property.Value must be of type cinder.volume
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::EC2::VolumeAttachment
properties:
Device: String
InstanceId: String
VolumeId: String
AWS::ElasticLoadBalancing::LoadBalancer¶
Implements a HAProxy-bearing instance as a nested stack.
The template for the nested stack can be redefined with
loadbalancer_template
option in heat.conf
.
Generally the image used for the instance must have the following packages installed or available for installation at runtime:
- heat-cfntools and its dependencies like python-psutil
- cronie
- socat
- haproxy
Current default builtin template uses Fedora 21 x86_64 base cloud image (https://getfedora.org/cloud/download/) and apart from installing packages goes through some hoops around SELinux due to pecularities of heat-cfntools.
Required Properties¶
- AvailabilityZones¶
- The Availability Zones in which to create the load balancer.List value expected.Updates cause replacement.
- Listeners¶
- One or more listeners for this load balancer.List value expected.Updates cause replacement.List contents:
- Map value expected.Updates cause replacement.Map properties:
- InstancePort¶
- Required.TCP port on which the instance server is listening.Integer value expected.Updates cause replacement.
- LoadBalancerPort¶
- Required.The external load balancer port number.Integer value expected.Updates cause replacement.
- PolicyNames¶
- Not implemented.
- Protocol¶
- Required.The load balancer transport protocol to use.String value expected.Updates cause replacement.Allowed values: “TCP”, “HTTP”
- SSLCertificateId¶
- Not implemented.
Optional Properties¶
- AppCookieStickinessPolicy¶
Note
Not implemented.- HealthCheck¶
- An application health check for the instances.Map value expected.Updates cause replacement.Map properties:
- HealthyThreshold¶
- Required.The number of consecutive health probe successes required before moving the instance to the healthy state.Integer value expected.Updates cause replacement.
- Interval¶
- Required.The approximate interval, in seconds, between health checks of an individual instance.Integer value expected.Updates cause replacement.
- Target¶
- Required.The port being checked.String value expected.Updates cause replacement.
- Timeout¶
- Required.Health probe timeout, in seconds.Integer value expected.Updates cause replacement.
- UnhealthyThreshold¶
- Required.The number of consecutive health probe failures required before moving the instance to the unhealthy stateInteger value expected.Updates cause replacement.
- Instances¶
- The list of instance IDs load balanced.List value expected.Can be updated without replacement.
- LBCookieStickinessPolicy¶
Note
Not implemented.- SecurityGroups¶
- List of Security Groups assigned on current LB.List value expected.Can be updated without replacement.
- Subnets¶
Note
Not implemented.
Attributes¶
- CanonicalHostedZoneName¶
The name of the hosted zone that is associated with the LoadBalancer.
- CanonicalHostedZoneNameID¶
The ID of the hosted zone name that is associated with the LoadBalancer.
- DNSName¶
The DNS name for the LoadBalancer.
- SourceSecurityGroup.GroupName¶
The security group that you can use as part of your inbound rules for your LoadBalancer’s back-end instances.
- SourceSecurityGroup.OwnerAlias¶
Owner of the source security group.
- show¶
Detailed information about resource.
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::ElasticLoadBalancing::LoadBalancer
properties:
AvailabilityZones: [Value, Value, ...]
HealthCheck: {"HealthyThreshold": Integer, "Interval": Integer, "Target": String, "Timeout": Integer, "UnhealthyThreshold": Integer}
Instances: [Value, Value, ...]
Listeners: [{"InstancePort": Integer, "LoadBalancerPort": Integer, "Protocol": String}, {"InstancePort": Integer, "LoadBalancerPort": Integer, "Protocol": String}, ...]
SecurityGroups: [Value, Value, ...]
AWS::IAM::AccessKey¶
Required Properties¶
- UserName¶
- The name of the user that the new key will belong to.String value expected.Updates cause replacement.
Attributes¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::IAM::AccessKey
properties:
UserName: String
AWS::IAM::User¶
Optional Properties¶
- Groups¶
- Not Implemented.List value expected.Updates cause replacement.
- LoginProfile¶
- A login profile for the user.Map value expected.Updates cause replacement.Map properties:
- Password¶
- Optional.String value expected.Updates cause replacement.
- Path¶
- Not Implemented.String value expected.Updates cause replacement.
- Policies¶
- Access policies to apply to the user.List value expected.Updates cause replacement.
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::IAM::User
properties:
Groups: [Value, Value, ...]
LoginProfile: {"Password": String}
Path: String
Policies: [Value, Value, ...]
AWS::S3::Bucket¶
Optional Properties¶
- AccessControl¶
- A predefined access control list (ACL) that grants permissions on the bucket.String value expected.Updates cause replacement.Allowed values: “Private”, “PublicRead”, “PublicReadWrite”, “AuthenticatedRead”, “BucketOwnerRead”, “BucketOwnerFullControl”
- Tags¶
- Tags to attach to the bucket.List value expected.Updates cause replacement.List contents:
- WebsiteConfiguration¶
- Information used to configure the bucket as a static website.Map value expected.Updates cause replacement.Map properties:
Attributes¶
HOT Syntax¶
heat_template_version: 2015-04-30
...
resources:
...
the_resource:
type: AWS::S3::Bucket
properties:
AccessControl: String
Tags: [{"Key": String, "Value": String}, {"Key": String, "Value": String}, ...]
WebsiteConfiguration: {"IndexDocument": String, "ErrorDocument": String}