Hi Im trying to manage Akamai properties from pulu...
# getting-started
s
Hi Im trying to manage Akamai properties from pulumi. Im able to create new properties but i cannot update them after creation. I always get the error "CreateFromVersion: cannot be blank". I cant find any references in the documents to provide this field. Any help would be really appreciated. TIA.
Copy code
pulumi_test1 = akamai.Property("pulumi-test1",
    contract_id="ctr_G-XXXXXXX",
    group_id="grp_000000",
    hostnames=[akamai.PropertyHostnameArgs(
        cert_provisioning_type="CPS_MANAGED",
        cert_statuses=[akamai.PropertyHostnameCertStatusArgs()],
        cname_from="<http://cdn1.example.net|cdn1.example.net>",
        cname_to="<http://cdn1.example.net.edgesuite.net|cdn1.example.net.edgesuite.net>",
        cname_type="EDGE_HOSTNAME",
    )],
    name="pulumi-test1",
    product_id="prd_Fresca",
    rule_format="latest",
    rules=json.dumps(rules),
    opts=pulumi.ResourceOptions(protect=True)
)
b
please open an issue in the github repo
👍 1