Add-ConOr
Add-ConOr
SYNOPSIS
Adds the condition function “Fn::Or” to a resource property
SYNTAX
Add-ConOr [-Conditions] <Object[]> [<CommonParameters>]
DESCRIPTION
Returns true if any one of the specified conditions evaluate to true, or returns false if all of the conditions evaluates to false. Fn::Or acts as an OR operator. The minimum number of conditions that you can include is 2, and the maximum is 10.
EXAMPLES
EXAMPLE 1
Add-ConOr -Conditions (Add-ConEquals -FirstValue "sg-mysggroup" -SecondValue (Add-FnRef -Ref "ASecurityGroup")),(Add-ConEquals -FirstValue "Production" -SecondValue (Add-FnRef -Ref "Environment"))
When the template is exported, this will convert to: {“Fn::Or”:[{“Fn::Equals”:[“sg-mysggroup”,{“Ref”:”ASecurityGroup”}]},{“Fn::Equals”:[“Production”,{“Ref”:”Environment”}]}]}
PARAMETERS
-Conditions
Type: Object[]
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
INPUTS
OUTPUTS
Vaporshell.Condition.Or
NOTES
You can use the following functions in this condition statement: Fn::FindInMap Ref Other condition functions