ansible.builtin.pow (v2.16.5) — filter

power of (math operation)

| "added in version" 1.9 of ansible.builtin"

Authors: unknown

Install Ansible via pip

Install with pip install ansible-core==2.16.5

Description

Math operation that returns the Nth power of inputed number, C(X ^ N).

Inputs

    
_input:
    description: The base.
    required: true
    type: float

_power:
    description: Which power (exponent) to use.
    required: true
    type: float

Outputs

_value:
  description: Resulting number.
  type: float