Igor Tiunov

Results 18 comments of Igor Tiunov

Hi @varmax2511 The main use case is ISV Architecture [1] where Customers are connecting dynamically and there is needed the automation for such attaching to the management compartment: ![image](https://user-images.githubusercontent.com/3703483/102182119-cb44f580-3ebc-11eb-984c-85b91963d97c.png) I'm...

Hi @hyder Let's discuss it to help engineers make decision. The first problem is the route table rule doesn't exist in API OCI as a separate resource. To update route...

Hi, some workaround for this: https://pypi.org/project/ortu/ ```terraform resource "null_resource" "right_route_table_update" { triggers = { right_lpg = oci_core_local_peering_gateway.right_lpg.id } provisioner "local-exec" { command = "ortu --rt-ocid ${data.oci_core_route_tables.right_route_table.route_tables[0].id} --cidr ${data.oci_core_vcn.left_vcn.cidr_block} --ne-ocid ${oci_core_local_peering_gateway.right_lpg.id}"...

@dralquinta I can confirm that ortu is just workaround and we have to live with pip install in our automation. As I said in another issue, the root cause of...

Hi @varmax2511 Due to the lack of such functionality, are there any suggestions to deal with sensitive params in terraform configuration? For example, `oci_load_balancer_certificate` and `oci_core_ipsec_connection_tunnel_management` have such params as...

Hi @varmax2511 If I understand this correctly `Oracle-Tags.CreatedBy` and `Oracle-Tags.CreatedOn` was added by OCI API itself. And also, the `Oracle-Tags` is managed by OCI and I don't have permission for...

@jotruon I confirm that there no any other defined_tags in resource definition. The `oci_core_instance` declaration is in issue description.

@jotruon Could you try to create the resources with terraform 0.13.0 and than upgrade your binary to 0.14.5 and run `terraform plan` ?

@jotruon I assume you have a dirty environment. I'm able to reproduce this on a newly created account. And as you can see, other users confirm that there are changes.

Hi @manojmeda I have a couple of cases. 1. The first case is interaction with windows machines. Let's see a routine play: ```yaml - name: Run configuration on windows hosts...