Releases: Binsabbar/oracle-cloud-terraform
Releases · Binsabbar/oracle-cloud-terraform
v2.4.0
v2.3.1
v2.3.0
v2.2.0
v2.1.1
v2.1.0
v2.1.0:
Please see breaking changes section before upgrading.
New
instances
: add posibility to use flex shape configuration
Breaking Changes
instances
modules input is updated. A new keyflex_shape_config
is now required undervar.instances.*.config
.- Add
flex_shape_config
and set its value to{}
. Example of partial instance object. See module's readme for full example.
- Add
"instance-a" = {
name = "instance-a"
availability_domain_name = "ocixxxxxx.xxxxxx.xxxxx"
fault_domain_name = "ocixxxxxx.xxxxxx.xxxxx"
compartment_id = "ocixxxxxx.xxxxxx.xxxxx"
volume_size = 500
autherized_keys = "ssh-rsa xxxxxxxxxxxxxxxxxxxxxx\n ssh-rsa xxxxxxxxxxxxxxxxxxxxxx"
state = "RUNNING"
config = {
shape = "ocixxxxxx.xxxxxx.xxxxx"
flex_shape_config = {} <-------------------------------------------------------------------- note this line
...
...
...
...
}
}
v2.0.1
v2.0
v2.0:
Please see breaking changes section before upgrading.
New
vault
module to manage KMS (only for key management service).volume
module to manage extra volume attachments and backup. #7- (
object-storage
) Allow to addlifecycle-rules
to buckets. #13 - (
instance
) Ability to add multiple secondary IPs to primary VNIC #14 #15 - (
instance
) Ability to add multiple secondary VNICs and multiple private IPs #8 - (
public-ip
) Ability to attach public ip to a given private IP #16 - (
network
) Ability to - (
kubernetes
) Ability to useFlex Shape
- (
kubernetes
) Ability to change node volume size - (
kubernetes
) Ability to use NextGen Cluster #23 - (
identity
) Ability to map IdP groups to oci groups. #27
Breaking Changes
public_ip
module input name is changed fromips
tountracked_ips
.- This is to distinguish public IPs that will be managed by Terraform (private IP assignment are not tracked by Terraform). This is used in service like
NLB
. - output of module changed. Previously named
ips
renamed tountracked_ips
- This is to distinguish public IPs that will be managed by Terraform (private IP assignment are not tracked by Terraform). This is used in service like
object-storage
module input is updated to include configuration forlifecycle
managements.- Add the following key to every bucket created
lifecycle-rules = {}
. To configure rules, refer to module's readme.
- Add the following key to every bucket created
network
module input is updated as following:private_subnets
andpublic_subnets
objects map have a new keyname
. Ensure you addname
to all existing subnets objects.
public_subnets = {
"public" = {
cidr_block = "10.0.1.0/20"
security_list_ids = ["ocid.xxxxxxxx"]
optionals = {}
}
}
became (the same thing applies to private_subnets
input)
public_subnets = {
"public" = {
name = "public"
cidr_block = "10.0.1.0/20"
security_list_ids = ["ocid.xxxxxxxx"]
optionals = {}
}
}
allowed_ingress_ports
is removed and replaced by the new keytcp_ingress_ports_from_all
indefault_security_list_rules.public_subnets
.allowed_ingress_ports
was applied only to public subnet security list as TCP ingress. Whatever value you had there add it todefault_security_list_rules.public_subnets.tcp_ingress_ports_from_all
tcp_ingress_ports_from_vcn
andudp_ingress_ports_from_vcn
are added todefault_security_list_rules.private_subnets
- NAT Gateway and Internet Gateway resource name has changed. Run the following command manually to update the state names
Internet Gateway Resource
terraform state mv module.NETWORK_MODULE_NAME.oci_core_internet_gateway module.NETWORK_MODULE_NAME.oci_core_internet_gateway\[0\]
Nat Gateway Resource
terraform state mv module.NETWORK_MODULE_NAME.oci_core_nat_gateway module.NETWORK_MODULE_NAME.oci_core_nat_gateway\[0\]
Public Route Table Resource
terraform state mv module.NETWORK_MODULE_NAME.oci_core_default_route_table.public_route_table module.NETWORK_MODULE_NAME.oci_core_default_route_table.public_route_table\[\"igw=true\"\]
Private Route Table Resource
terraform state mv module.NETWORK_MODULE_NAME.oci_core_route_table.private_route_table module.NETWORK_MODULE_NAME.oci_core_route_table.private_route_table\[\"natgw=true:svcgw=false\"\]
instances
modules output is updated:public_ip
andprivate_ip
changed to include vnic info, and primary ip. Alsoprivate_ip
is renamed toip_address
. The new instance output is like the following:
from:
MY_INSTANCE = {
private_ip = "xxx.xxx.xxx.xxx"
public_ip = "xxx.xxx.xxx.xxx"
}
to
MY_INSTANCE = {
id = ocid.instance.xxxxxxxxxxxxx
primary_vnic = {
primary_ip = {
id = "ocid1.privateip.oc1.xxxxxxxxxxxxxxxx"
ip_address = "xxx.xxx.xxx.xxx"
public_ip = "xxx.xxx.xxx.xxx"
subnet_id = "ocid1.subnet.oc1.xxxxxxxxxxxxxxx"
vnic_id = "ocid1.vnic.oc1.xxxxxxxxxxxxxxx"
}
secondary_ips = {}
}
secondary_vnics = {}
}
instances
modules input is updated as following:- input has new attribute
name
. It must be added to instance block, set it toname = "INSTANCE_NAME"
- input has new attribute
optionals
. It must be added to instance block. Set it to{}
config
object has new attributeprimary_vnic
.- Add the following when upgrading to fix it.
... ... config = { primary_vnic = { <------ this line start primary_ip = "", secondary_ips = {} } <------ this line end } ... ...
secondary_vnics
is new attribute to instance object.- Add the following to instance object.
{ ... ... config = { ... ... } secondary_vnics = {} <------ this line ... ... }
- input has new attribute
- (
kubernetes
) The following new variables are added (Only supported for NextGen Clusters. Do not upgrade to V2 if you are using old clusters).k8s_version
is renamed tocluster_k8s_version
endpoint_config
: set it to existing configuration (take it from UI)node_pools[].volume_size_in_gbs
: Set it to50
to keep current configuration as is.node_pools[].k8s_version
: Set it to the previous value ofk8s_version
to keep current configuration as is.node_pools[].flex_shape_config
: Set it to{}
node_pools[].node_metadata
: Set it to{}
Enhancement
- (
instances
) Allow rename of instance withour recration (breaking change) #6- You need to add
name
attribute to the instance objects you already created.
- You need to add
- (
network
) Allow display name of subnet to be updated (breaking change) #6- You need to add
name
attribute to the subnet objects you already created.
- You need to add
- (
kuberentes
) Ability to set master node version separately from node pool version. #22