I am getting a timeout. I am unsure what can be the cause is.
terraform {
required_providers {
netapp-ontap = {
source = "NetApp/netapp-ontap"
version = "1.0.0"
}
}
}
provider "netapp-ontap" {
# Configuration options
connection_profiles = [{
name = "aws"
username = "fsxadmin"
password = "Passwoad"
hostname = "1..."
aws = {
function_name = "MyLink"
shared_config_profile = "default"
}
}]
}
resource "netapp-ontap_protocols_nfs_export_policy_resource" "testpolicy" {
cx_profile_name = "aws"
svm_name = "svm1"
name = "exportpolicytest"
}
here is the error:
Error: error reading svm info
│
│ with netapp-ontap_protocols_nfs_export_policy_resource.testpolicy,
│ on main.tf line 43, in resource "netapp-ontap_protocols_nfs_export_policy_resource" "testpolicy":
│ 43: resource "netapp-ontap_protocols_nfs_export_policy_resource" "testpolicy" {
│
│ error on GET svm/svms: Get "https://<ip>/api/svm/svms?name=svm1": dial
│ tcp <ip>:443: i/o timeout, statusCode -1
Thanks