We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stack trace { "status_code": 500, "error": "HTTP Error 500: INTERNAL SERVER ERROR", "response": null, "msg": "Failed fetching URL: https://10.0.0.1:9440/api/nutanix/v3/groups", "invocation": { "module_args": { "nutanix_host": "10.0.0.1", "nutanix_username": "user1", "nutanix_password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER", "validate_certs": false, "state": "present", "name": "ansible", "desc": "description", "categories": { "Environment": [ "dev" ] }, "cluster": { "name": "LAB" }, "networks": [ { "is_connected": true, "subnet": { "uuid": "HIDDEN" } } ], "disks": [ { "type": "DISK", "size_gb": 30, "bus": "SATA", "storage_container": { "name": "" } } ], "vcpus": 1, "cores_per_vcpu": 1, "memory_gb": 1, "nutanix_port": "9440", "wait": true, "timezone": "UTC", "force_power_off": false, "remove_categories": false } }, "_ansible_no_log": false, "changed": false }
Additional context Using the REST API Explorer v3.1.0 in Prism Central I noticed that there is no endpoint named "/groups".
The text was updated successfully, but these errors were encountered:
bhati-pradeep
No branches or pull requests
Example playbook :
hosts: localhost
gather_facts: false
collections:
module_defaults:
group/nutanix.ncp.ntnx:
nutanix_host: "{{ pc_ip }}"
nutanix_username: "{{ nutanix_user }}"
nutanix_password: "{{ nutanix_password }}"
validate_certs: false
tasks:
tags: "create_vm"
ntnx_vms:
state: present
name: "ansible"
desc: "description"
categories:
Environment:
- "dev"
cluster:
name: "LAB"
networks:
- is_connected: True
subnet:
uuid: "{{ subnet_uuid }}"
disks:
- type: "DISK"
size_gb: 30
bus: "SATA"
storage_container:
name: "SelfServiceContainer"
vcpus: 1
cores_per_vcpu: 1
memory_gb: 1
Stack trace
{
"status_code": 500,
"error": "HTTP Error 500: INTERNAL SERVER ERROR",
"response": null,
"msg": "Failed fetching URL: https://10.0.0.1:9440/api/nutanix/v3/groups",
"invocation": {
"module_args": {
"nutanix_host": "10.0.0.1",
"nutanix_username": "user1",
"nutanix_password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
"validate_certs": false,
"state": "present",
"name": "ansible",
"desc": "description",
"categories": {
"Environment": [
"dev"
]
},
"cluster": {
"name": "LAB"
},
"networks": [
{
"is_connected": true,
"subnet": {
"uuid": "HIDDEN"
}
}
],
"disks": [
{
"type": "DISK",
"size_gb": 30,
"bus": "SATA",
"storage_container": {
"name": ""
}
}
],
"vcpus": 1,
"cores_per_vcpu": 1,
"memory_gb": 1,
"nutanix_port": "9440",
"wait": true,
"timezone": "UTC",
"force_power_off": false,
"remove_categories": false
}
},
"_ansible_no_log": false,
"changed": false
}
Additional context
Using the REST API Explorer v3.1.0 in Prism Central I noticed that there is no endpoint named "/groups".
The text was updated successfully, but these errors were encountered: